We can check for the details about the dataset here: The bAbI Project
For this project, we will be using the Picker Library.
from google.colab import drive
drive.mount('/content/drive')
Mounted at /content/drive
import pickle
import numpy as np
with open("/content/drive/MyDrive/1stop.ai/Basic ChatBot/train_qa.txt","rb") as fp:
train_data = pickle.load(fp) # Obtaining the training data
train_data
[(['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), ...]
In the data, we can see that there are two sentences in each and also the fullstop has been considered as another token. we need to make sure that this happens. after these two sentences, we have the question and the answer to that question.
with open("/content/drive/MyDrive/1stop.ai/Basic ChatBot/test_qa.txt","rb") as fp:
test_data = pickle.load(fp)
test_data
[(['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes')]
type(train_data)
list
type(test_data)
list
len(train_data)
10000
len(test_data)
1000
In both the training and the testing data, we can see that there is a story, a questiona and an answer.
train_data[0]
(['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no')
test_data[0]
(['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no')
We can see the story as:
' '.join(train_data[0][0])
'Mary moved to the bathroom . Sandra journeyed to the bedroom .'
' '.join(test_data[0][0])
'Mary got the milk there . John moved to the bedroom .'
The question which we can have for this is:
' '.join(train_data[0][1])
'Is Sandra in the hallway ?'
' '.join(test_data[0][1])
'Is John in the kitchen ?'
Since the answers to the questions need not be joined, so we have them as:
train_data[0][2]
'no'
test_data[0][2]
'no'
Here, we will be setting up the vocabulary for all the words in which we will be giving values to all of them as:
# Creating an Empty Set
vocab = set()
# Putting all the Training and testing data into this
all_data = train_data + test_data
all_data
[(['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'no'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'no'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], 'no'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'yes'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], 'no'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'yes'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Is', 'John', 'in', 'the', 'hallway', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Is', 'John', 'in', 'the', 'garden', '?'], 'no'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], 'yes'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['Is', 'John', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'no'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], 'yes'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Is', 'Mary', 'in', 'the', 'office', '?'], 'no'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], 'no'), ...]
In the above output, each tuple has three things - the story in the form of a list, the question in the form of a list and the answer is just a word
type(all_data)
list
len(all_data)
11000
for story, question, answer in all_data:
vocab = vocab.union(set(story))
vocab = vocab.union(set(question))
vocab.add('yes')
vocab.add('no')
After this, we can see that the vocab will have all the workds as:
vocab
{'.', '?', 'Daniel', 'Is', 'John', 'Mary', 'Sandra', 'apple', 'back', 'bathroom', 'bedroom', 'discarded', 'down', 'dropped', 'football', 'garden', 'got', 'grabbed', 'hallway', 'in', 'journeyed', 'kitchen', 'left', 'milk', 'moved', 'no', 'office', 'picked', 'put', 'the', 'there', 'to', 'took', 'travelled', 'up', 'went', 'yes'}
type(vocab)
set
len(vocab)
37
So, in total there are 37 unique words. Now, we need one more space to hold zero for the keras pad sequence. So,
vocab_length = len(vocab) + 1
vocab_length
38
Now, we will find out the maximum story length and the maximum question length as:
# For maximum story length
for data in all_data:
print(data[0]) # With this, we will be able to see all the stories in the data
print(len(data[0]))
max_story_length = max([len(data[0]) for data in all_data])
Streaming output truncated to the last 5000 lines.
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
47
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.']
58
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.']
12
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.']
24
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
49
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.']
60
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.']
71
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
14
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
28
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
40
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
52
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
64
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.']
12
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
24
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
36
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
48
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.']
59
['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
26
['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.']
38
['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
51
['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
63
['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
75
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
12
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.']
24
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.']
36
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
49
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.']
61
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
24
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
36
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.']
47
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.']
58
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
70
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
13
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
25
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
36
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
48
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.']
61
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
13
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
25
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
37
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
49
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
61
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
12
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
24
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.']
36
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
48
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
60
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.']
13
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
25
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
37
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
49
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
61
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
12
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.']
23
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.']
37
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.']
48
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
60
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
12
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
24
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
36
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.']
49
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
61
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.']
13
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
26
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
38
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
51
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.']
62
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
13
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.']
26
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
39
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.']
53
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.']
65
['John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
37
['John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.']
48
['John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
60
['John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
73
['John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
86
['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
35
['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.']
47
['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
59
['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.']
71
['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
83
['John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
23
['John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
37
['John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
49
['John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
61
['John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
73
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
12
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
24
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
37
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
49
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
61
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
12
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
24
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
37
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
49
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
61
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
12
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
25
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.']
37
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
50
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.']
62
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
12
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
24
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.']
37
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.']
47
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
83
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
13
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
25
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
37
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
49
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
61
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
12
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
23
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
36
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
49
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
62
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
12
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.']
24
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.']
37
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.']
49
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
62
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
12
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
25
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
37
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.']
49
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
62
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
12
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
24
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
36
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
48
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
60
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.']
12
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
24
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
37
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
50
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
63
['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
12
['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
24
['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
36
['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
48
['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
60
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
13
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
25
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
38
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
50
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
63
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.']
13
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
24
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.']
36
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.']
48
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
60
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
13
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.']
26
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
37
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
49
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
61
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
13
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
26
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
38
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.']
49
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
61
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
13
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
25
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.']
38
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
51
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.']
62
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
12
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
25
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
37
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
50
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.']
64
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
12
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
25
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
37
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.']
50
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.']
62
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
12
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
24
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
36
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
48
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
61
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
12
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
24
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
36
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.']
50
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.']
61
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
13
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
26
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
38
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.']
50
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.']
63
['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
25
['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
37
['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
49
['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
62
['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
74
['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
13
['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
25
['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
36
['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.']
48
['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.']
60
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
12
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
24
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
36
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.']
49
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
61
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
12
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.']
24
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
36
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
49
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
61
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
12
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.']
25
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
37
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.']
48
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
60
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
12
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.']
25
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
37
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
50
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
63
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
12
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
24
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.']
36
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
48
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.']
60
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
12
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
24
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
37
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
51
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
64
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.']
13
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.']
24
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.']
35
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
48
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
60
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
13
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
27
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
39
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
50
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
63
['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
13
['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
24
['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
36
['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.']
49
['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
61
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
13
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.']
25
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
38
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.']
50
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
61
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
12
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
24
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
37
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.']
49
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
60
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.']
12
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.']
24
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
47
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
60
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.']
73
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
13
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
26
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
37
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.']
49
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
61
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.']
12
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
24
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.']
35
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
47
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
59
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
12
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.']
23
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
36
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.']
47
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
59
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
14
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
27
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
40
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
53
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
65
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
12
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
24
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
36
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
49
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.']
61
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.']
14
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
26
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
38
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
51
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
63
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.']
12
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.']
24
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
37
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
49
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.']
61
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
12
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
23
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
35
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
47
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
60
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
12
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
24
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
36
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
49
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
62
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.']
12
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.']
26
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
38
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.']
49
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
61
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
12
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
24
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
36
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
48
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
61
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
12
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.']
25
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
51
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.']
62
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.']
74
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
12
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
25
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.']
37
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
48
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
60
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.']
36
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
47
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
59
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
73
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
85
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
12
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
24
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.']
35
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
47
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
59
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
12
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
24
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
36
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
49
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
61
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
13
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
25
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
37
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
49
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
61
['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
12
['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
25
['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.']
37
['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.']
49
['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
62
['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
12
['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
24
['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
36
['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
48
['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
61
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.']
13
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
25
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
38
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.']
50
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
62
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.']
12
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.']
24
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
36
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
48
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.']
60
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
13
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
25
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.']
38
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
50
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
62
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.']
12
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
24
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
37
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
50
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
62
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
13
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
26
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
38
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
50
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
62
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.']
14
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
27
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
39
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.']
50
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
63
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
13
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.']
25
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.']
36
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.']
60
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
73
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
12
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
24
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
37
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.']
47
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
59
['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
12
['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
24
['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.']
36
['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
47
['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.']
59
['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.']
12
['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
24
['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
36
['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.']
49
['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
62
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
13
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
25
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.']
37
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
49
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
61
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.']
13
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
25
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
37
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.']
49
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
61
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
13
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
25
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
38
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.']
50
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
61
['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
14
['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.']
27
['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
40
['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
52
['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
64
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
12
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.']
26
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
39
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
51
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.']
62
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
13
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
25
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.']
37
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
50
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
62
['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
24
['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
36
['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.']
49
['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
61
['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
73
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
13
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
25
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
37
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
50
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
62
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
12
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.']
23
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
47
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.']
59
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
71
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.']
12
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
25
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.']
37
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
50
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
62
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
12
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.']
23
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
35
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
47
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.']
59
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
14
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
27
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.']
39
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.']
52
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
65
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
12
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.']
24
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
36
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
48
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
61
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
12
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.']
24
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
36
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.']
47
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
60
['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
13
['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.']
24
['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
36
['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
48
['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.']
60
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
13
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.']
25
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
38
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
49
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.']
61
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
13
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
26
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
39
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.']
52
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.']
64
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
12
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
24
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
36
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
48
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
60
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
24
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
37
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
48
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
59
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
72
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
23
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
35
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
47
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.']
59
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
71
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
13
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
25
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
37
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
49
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
62
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
14
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
27
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.']
39
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
52
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
64
['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
24
['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.']
37
['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.']
49
['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
61
['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
74
['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
25
['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.']
37
['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.']
48
['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
70
['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
83
['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
23
['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
36
['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
49
['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.']
61
['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
72
['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
12
['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
24
['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
36
['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
48
['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
60
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
13
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
25
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
38
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
51
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
63
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
13
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
25
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
37
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
50
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
62
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
12
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.']
24
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.']
36
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
48
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
62
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
12
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.']
24
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
36
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
48
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.']
59
['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
12
['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.']
25
['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
37
['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
50
['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
63
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.']
13
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
25
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
38
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
51
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
65
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
13
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.']
24
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
36
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
48
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
61
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
13
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
25
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
38
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.']
51
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
63
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
12
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
25
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
38
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
50
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
62
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
12
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.']
24
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.']
36
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.']
47
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
59
['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
12
['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
25
['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
38
['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
50
['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
63
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.']
35
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.']
47
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
59
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
71
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.']
84
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
12
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
24
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
36
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
48
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
60
['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
12
['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.']
24
['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
35
['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.']
46
['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.']
58
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
12
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.']
24
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
35
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
48
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
60
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
13
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
25
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.']
37
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.']
48
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.']
60
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
13
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.']
24
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
36
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
47
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
60
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
13
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
26
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.']
39
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
51
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.']
62
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.']
12
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
25
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
37
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.']
48
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.']
60
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.']
24
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
36
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.']
47
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
59
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
71
['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
25
['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
36
['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.']
47
['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.']
58
['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
82
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
12
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
24
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
36
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
49
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
61
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
13
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
26
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
38
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
50
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
64
['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
13
['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
26
['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
38
['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
50
['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
61
['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
13
['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
26
['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
38
['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
51
['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
63
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.']
12
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
24
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
36
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
49
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
61
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.']
24
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.']
35
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
48
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
61
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
73
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.']
13
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
25
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
36
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
49
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.']
61
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
12
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
25
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
37
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.']
49
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.']
61
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
13
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.']
25
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
37
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.']
50
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
62
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.']
13
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.']
25
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
38
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
51
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
63
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.']
12
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
25
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.']
37
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
50
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
62
['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
36
['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
48
['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
60
['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.']
72
['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
84
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
12
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
24
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
36
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
49
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
61
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
13
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
25
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
37
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
49
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.']
61
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
12
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.']
23
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
35
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
47
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
59
['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
36
['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
49
['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.']
59
['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.']
71
['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
84
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
12
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
25
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
37
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
49
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.']
61
['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
24
['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
37
['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.']
49
['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
61
['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
74
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
12
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
24
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
36
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
49
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
61
['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
12
['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
24
['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
36
['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
50
['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
62
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
12
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.']
25
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
38
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
50
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
62
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
12
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
25
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
37
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
50
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.']
62
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.']
12
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.']
24
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.']
37
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.']
48
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
59
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
12
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.']
23
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
34
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
46
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
60
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.']
12
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
24
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
38
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
50
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
62
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.']
12
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
23
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
36
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
48
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
60
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
12
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
26
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
39
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
51
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
63
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
12
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
24
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
36
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.']
49
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
62
['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.']
25
['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.']
36
['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
48
['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
60
['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
73
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
12
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.']
24
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
36
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.']
48
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
60
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
12
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
24
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
36
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
48
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
60
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
13
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
26
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
39
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
51
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
63
['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
12
['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
24
['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
36
['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
48
['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.']
60
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
12
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
25
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
37
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
49
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
62
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
12
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
24
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
37
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
50
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
62
['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
12
['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
24
['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.']
36
['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
49
['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
61
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
12
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
24
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
37
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
50
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
63
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
13
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.']
25
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.']
37
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.']
71
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.']
83
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
12
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
24
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.']
38
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.']
51
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
64
['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
14
['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.']
26
['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
39
['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
52
['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
64
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
12
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
24
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
37
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
50
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
62
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
12
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
24
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
38
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.']
51
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
62
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
13
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
25
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
36
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
48
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
60
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
12
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
23
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
35
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
47
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.']
60
['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
13
['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
25
['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
37
['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.']
50
['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
63
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
13
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.']
25
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
38
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
50
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
62
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
13
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
25
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
39
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.']
51
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
63
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
12
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
25
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
37
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
50
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.']
63
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
12
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
24
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
36
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
48
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
60
['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
24
['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.']
35
['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.']
47
['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.']
58
['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
71
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.']
12
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
25
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
37
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
48
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
60
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
13
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.']
24
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
36
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.']
48
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
61
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
14
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
26
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
38
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
50
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
62
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
12
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
24
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.']
36
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
48
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
59
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
13
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.']
24
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.']
36
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.']
49
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
61
['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
25
['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.']
37
['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.']
48
['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.']
59
['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.']
73
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
12
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
25
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.']
37
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
50
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
63
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
12
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
24
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.']
35
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.']
47
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
59
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.']
12
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
23
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
36
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
48
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.']
60
['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
13
['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
24
['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.']
36
['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
48
['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
60
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
12
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
24
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.']
36
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
49
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
61
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
12
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.']
25
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
37
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
51
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
64
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
12
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
25
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
38
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
51
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
64
['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
12
['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.']
24
['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
36
['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
48
['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
60
['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
36
['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
48
['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
60
['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
72
['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.']
84
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
12
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
24
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
35
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
47
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.']
58
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
12
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
25
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
38
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
50
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.']
63
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
13
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
26
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
39
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
51
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
63
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.']
12
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
24
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
37
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.']
48
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
59
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
12
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
26
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.']
38
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
50
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.']
61
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
12
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
24
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
37
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
51
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
63
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.']
12
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
24
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
37
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
50
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
62
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.']
13
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
26
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
39
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.']
50
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.']
62
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
13
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
25
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
38
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
51
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
65
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.']
12
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
24
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
36
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.']
49
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.']
61
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
12
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
24
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
36
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
48
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
60
['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
12
['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
24
['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.']
36
['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
49
['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
62
['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.']
25
['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
37
['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
49
['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.']
61
['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.']
73
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
12
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
24
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
37
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
49
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.']
61
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
12
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
24
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
37
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.']
49
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
61
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
12
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
24
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
36
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
48
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
60
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
26
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
39
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
51
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.']
64
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
76
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
13
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
26
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
38
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
50
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
62
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
13
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
27
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
39
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.']
51
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.']
63
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
12
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.']
24
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
36
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
48
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
60
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
12
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.']
23
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.']
35
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
48
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
60
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
12
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
24
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
36
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
48
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
60
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
12
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
25
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
37
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
50
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
64
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.']
12
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
24
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.']
37
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.']
48
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
60
['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
13
['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
25
['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
37
['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
49
['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.']
60
['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
12
['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
24
['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
36
['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
48
['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.']
60
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
12
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.']
24
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
36
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.']
47
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
60
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
24
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
36
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
48
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
60
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.']
71
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
12
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
25
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
37
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.']
48
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
61
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
12
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
25
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
38
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
50
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
61
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
12
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
25
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
38
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
50
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
63
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
12
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
24
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
37
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
50
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
62
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
12
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
24
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
36
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.']
47
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
59
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
13
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.']
26
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
37
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
49
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
60
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
12
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
25
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
38
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.']
51
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
62
['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
14
['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
25
['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
37
['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.']
49
['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.']
61
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
12
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
24
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
37
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
49
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
61
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
12
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
24
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.']
37
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
48
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.']
59
['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
36
['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
49
['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
62
['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.']
74
['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
87
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.']
12
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.']
24
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.']
36
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.']
48
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
60
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
12
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
24
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.']
36
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
48
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
60
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
13
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
26
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.']
38
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
52
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.']
64
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
13
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
25
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.']
38
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
50
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
61
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.']
13
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
27
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
41
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.']
52
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.']
65
['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.']
24
['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
36
['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
48
['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
61
['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
73
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
13
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
25
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
38
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.']
51
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
63
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.']
13
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
25
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
37
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
49
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
61
['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
12
['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
24
['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
35
['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
47
['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.']
58
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
12
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
25
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.']
36
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
49
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
61
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
13
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
26
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.']
37
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
49
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
61
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
12
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
24
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
36
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
48
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.']
61
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
14
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
26
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.']
39
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
51
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
62
['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
23
['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
35
['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', 'there', '.']
46
['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.']
59
['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
71
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
13
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
25
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
38
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.']
50
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
64
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
12
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
24
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.']
35
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
47
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
59
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
13
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
25
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
37
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
50
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.']
62
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
12
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.']
24
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
36
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
49
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
63
['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
23
['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
36
['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
49
['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
61
['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
73
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
12
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.']
25
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
37
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
50
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
62
['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
12
['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.']
24
['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
37
['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.']
49
['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
62
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
12
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
25
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.']
36
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
48
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.']
60
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
13
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
25
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
38
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.']
49
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.']
61
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
12
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
24
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
36
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
48
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
61
['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
12
['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.']
23
['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
36
['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.']
48
['Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
60
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
12
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
25
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
37
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
49
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.']
60
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
12
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
25
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
37
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
49
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
61
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
12
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
24
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
36
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
49
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
61
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
13
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
25
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
38
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
51
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
63
['John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
12
['John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
26
['John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
38
['John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
51
['John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.']
63
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
12
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
24
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
36
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
47
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.']
59
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
12
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.']
24
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
36
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.']
48
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
60
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
12
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
24
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
37
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.']
49
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
61
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
37
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.']
50
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
62
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
74
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
85
['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.']
13
['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.']
26
['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
38
['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
49
['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
62
['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
12
['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
24
['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
35
['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
48
['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
60
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
13
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
25
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
37
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
48
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
61
['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.']
36
['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
48
['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
61
['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
73
['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.']
87
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
12
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
24
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.']
37
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.']
48
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
61
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
13
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
26
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
38
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
50
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
63
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.']
13
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.']
24
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
36
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
48
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.']
61
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
12
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
26
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.']
38
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.']
51
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.']
63
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
13
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
25
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.']
38
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
50
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.']
61
['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
13
['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
25
['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
36
['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
49
['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
61
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
13
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
26
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
38
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.']
50
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
62
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
13
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
25
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.']
38
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
50
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.']
62
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
13
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
25
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
38
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
52
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
64
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
12
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
24
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.']
36
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.']
48
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
61
['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
12
['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.']
24
['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.']
37
['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
50
['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
62
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.']
12
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
24
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
36
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
48
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.']
60
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
12
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
24
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
36
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
48
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.']
60
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.']
12
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
25
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
37
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
50
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
63
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
13
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
25
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
37
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
49
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
61
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
12
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.']
23
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.']
36
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
48
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.']
60
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.']
12
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
23
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
36
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
48
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.']
59
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
12
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
24
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
36
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.']
48
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.']
60
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.']
12
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.']
24
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
36
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
48
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
60
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
13
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
25
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
37
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.']
49
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.']
60
['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
13
['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
25
['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
39
['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
52
['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
65
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
13
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
25
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
37
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
49
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.']
60
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
13
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.']
24
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
37
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
50
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
62
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.']
14
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
27
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
39
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
51
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.']
62
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
13
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
25
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
38
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
50
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
63
['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
13
['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.']
24
['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.']
36
['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
60
['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.']
71
['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
12
['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.']
24
['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.']
36
['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.']
47
['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
59
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
13
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
25
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.']
38
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.']
51
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
63
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.']
12
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
23
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
35
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
47
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.']
58
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
12
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
25
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.']
37
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.']
49
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
61
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
12
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.']
23
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
46
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.']
60
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
71
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
12
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
26
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
38
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
50
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
63
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
13
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
25
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
37
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.']
50
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
62
['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
12
['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
24
['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
36
['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
48
['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
59
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
12
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
24
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
38
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
52
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
65
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
12
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.']
24
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
37
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
51
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
64
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
12
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
24
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
37
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
50
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.']
62
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
13
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.']
26
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.']
38
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.']
50
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
63
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.']
12
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
24
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
36
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.']
47
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
61
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
12
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
24
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
36
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.']
48
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
61
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.']
13
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.']
24
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
36
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
48
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
61
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.']
12
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
25
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
37
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
49
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
62
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
25
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
38
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
50
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.']
61
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.']
73
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
12
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.']
24
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
36
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
48
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
61
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
25
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.']
36
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.']
48
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
60
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
74
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.']
12
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.']
24
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
36
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
48
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
59
['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
12
['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.']
23
['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.']
35
['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
47
['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
59
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
14
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.']
26
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
38
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.']
51
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.']
62
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.']
12
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
24
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
36
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.']
49
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.']
61
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
12
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
25
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
38
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
50
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.']
63
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
13
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
26
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
38
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
50
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
63
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.']
13
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.']
24
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
36
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
48
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
61
['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
12
['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
24
['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.']
38
['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
50
['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
62
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
12
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.']
24
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
36
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
48
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
60
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
13
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.']
24
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
37
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
50
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
62
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
12
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
24
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
36
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
48
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.']
60
['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
12
['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
23
['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
35
['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
47
['John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
59
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
13
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
25
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.']
37
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
48
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
60
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
23
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.']
36
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
48
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
60
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
73
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
26
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
39
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.']
52
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
64
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
76
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
13
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
26
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
39
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
51
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
64
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
13
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.']
24
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
36
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.']
47
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
59
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.']
13
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
26
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
39
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
51
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.']
62
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
12
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.']
23
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
37
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.']
49
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
60
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
14
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
26
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.']
38
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.']
49
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.']
63
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.']
12
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.']
24
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
36
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
48
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
60
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
12
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
24
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
37
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.']
50
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
62
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
12
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
24
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
36
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
48
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
61
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.']
12
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
24
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
37
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
50
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
61
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.']
13
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
25
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
38
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
50
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
63
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
13
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
25
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.']
39
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.']
50
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
63
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
12
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
24
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
37
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
50
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
63
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
13
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
25
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.']
37
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.']
49
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
75
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
23
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
36
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
48
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
60
['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
73
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.']
12
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.']
23
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.']
36
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.']
49
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
62
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
12
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
25
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
37
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
49
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
61
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.']
13
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
25
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.']
37
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.']
49
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
62
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
12
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
25
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.']
37
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.']
50
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
63
['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
25
['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
37
['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.']
50
['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
62
['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.']
73
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
12
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.']
23
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
35
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
48
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
61
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
13
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
25
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
38
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.']
50
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
62
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.']
12
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.']
26
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
38
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
51
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
63
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
12
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
25
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
37
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
49
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
60
['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
12
['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
24
['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
37
['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
48
['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
61
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
12
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
24
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
37
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.']
48
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.']
61
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
12
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
24
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
37
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
49
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
61
['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.']
23
['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.']
36
['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
48
['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
60
['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.']
71
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
13
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
25
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
38
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
50
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
61
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.']
13
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.']
26
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
38
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
51
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.']
63
['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
13
['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
26
['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.']
37
['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
49
['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
62
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
12
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
25
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
37
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.']
49
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
62
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
12
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
24
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
36
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.']
47
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.']
58
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
12
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
24
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
36
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
48
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
60
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
13
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
26
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
38
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.']
52
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
64
['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
12
['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.']
25
['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.']
38
['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.']
50
['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
63
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
13
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.']
25
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
38
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
51
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
63
['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
12
['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
25
['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.']
36
['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
49
['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
62
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
13
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
25
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
37
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
50
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
61
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
12
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
25
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
37
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
50
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
62
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
13
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
25
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
37
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
50
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
63
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
14
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.']
26
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
38
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
50
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
63
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.']
13
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
24
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
36
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
48
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
60
['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
13
['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
25
['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
37
['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
49
['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
61
['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.']
13
['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
25
['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
37
['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.']
48
['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.']
59
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.']
12
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.']
24
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.']
36
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
48
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
60
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
12
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
24
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
36
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.']
48
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.']
59
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
13
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.']
26
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
39
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.']
52
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.']
64
['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
25
['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
37
['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.']
48
['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
61
['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
73
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
14
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
26
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
38
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
51
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.']
62
['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
13
['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
25
['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
37
['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
51
['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
65
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.']
12
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.']
23
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.']
35
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
47
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.']
59
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
13
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.']
26
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
37
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
49
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
62
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.']
12
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
24
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.']
36
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.']
47
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
59
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
12
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
24
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
36
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
48
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.']
60
['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
12
['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
25
['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
37
['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.']
49
['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
61
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
12
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.']
24
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
36
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
48
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
59
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.']
13
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
25
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
37
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
49
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
61
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
12
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
25
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
37
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
49
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
61
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
12
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
24
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
37
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
49
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.']
61
['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
34
['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
46
['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
58
['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
70
['John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.']
82
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
13
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.']
26
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
38
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
50
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.']
62
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
12
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.']
24
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
36
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.']
49
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
62
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
12
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
24
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
37
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
49
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
61
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
12
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
24
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
36
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
47
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
59
['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
12
['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
24
['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
36
['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
48
['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
60
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
12
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
24
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.']
36
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
49
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'football', '.']
59
['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
24
['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
37
['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
48
['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
60
['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
73
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
12
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
24
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
36
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
48
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
61
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.']
12
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
23
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
36
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
49
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
60
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
13
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
25
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
38
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.']
51
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
63
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.']
13
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
27
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
39
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
50
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
62
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
14
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
27
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.']
39
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
51
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.']
63
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
12
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
24
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.']
35
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.']
48
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.']
59
['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
25
['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
38
['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.']
50
['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.']
62
['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.']
73
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
12
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
24
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
37
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.']
49
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
62
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
12
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
24
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
36
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
49
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
61
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.']
13
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
27
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
39
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
51
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
63
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
14
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
26
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.']
38
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
50
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
62
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
25
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.']
37
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.']
48
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.']
61
['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.']
72
['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
12
['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
24
['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
36
['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
48
['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
60
['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
12
['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
24
['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
35
['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.']
47
['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
59
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
25
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.']
36
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
50
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.']
62
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.']
74
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
12
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.']
24
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.']
38
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
50
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
62
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
14
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
26
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
39
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
51
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.']
63
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
13
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
25
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
38
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.']
51
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.']
63
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
12
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.']
23
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
35
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
48
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.']
60
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
14
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.']
26
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.']
39
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
52
['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
65
['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
37
['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.']
49
['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.']
63
['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
75
['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
89
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
13
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
25
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
38
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.']
50
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
62
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.']
14
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
26
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.']
38
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
50
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.']
62
['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
12
['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.']
25
['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
37
['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
49
['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.']
61
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
12
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
24
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
36
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
48
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
60
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
26
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
38
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.']
50
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.']
61
['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.']
72
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.']
12
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
25
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
36
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
49
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
61
['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
23
['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
35
['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.']
46
['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
59
['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.']
71
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
13
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
26
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
38
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
50
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
63
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
12
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
25
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
37
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
50
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.']
61
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.']
12
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
25
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
37
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
50
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
62
['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
12
['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
23
['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
35
['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
48
['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
61
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
12
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.']
24
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
37
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
49
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
61
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
12
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
24
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.']
37
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
49
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.']
60
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
25
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.']
38
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
50
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
62
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.']
73
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
12
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.']
24
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
36
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
48
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.']
60
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
12
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
25
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
37
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
49
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.']
61
['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
24
['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
36
['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.']
49
['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.']
61
['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
73
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
12
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
24
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
37
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
50
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
63
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
12
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
24
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.']
37
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.']
50
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
62
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
12
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
25
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.']
37
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
49
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
62
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
13
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
26
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
40
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
52
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
64
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
12
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
25
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
37
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
49
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
62
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
13
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
25
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
36
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.']
49
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
61
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
25
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.']
38
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
50
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
62
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.']
75
['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.']
24
['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
36
['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
47
['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
59
['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
71
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
12
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
25
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
37
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
49
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
61
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
13
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
25
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
36
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
48
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
62
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
13
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
26
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
39
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
51
['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.']
63
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.']
13
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
25
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
36
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.']
50
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
64
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
12
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.']
24
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.']
36
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
48
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
60
['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.']
25
['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.']
37
['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
50
['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
63
['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
75
['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.']
12
['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
24
['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
38
['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.']
49
['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.']
60
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
12
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
24
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
36
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
49
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.']
61
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.']
12
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
24
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
37
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
49
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
61
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
25
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
38
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
50
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
63
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
77
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
13
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
25
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
36
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.']
48
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.']
61
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
13
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
25
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
37
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
50
['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
61
['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.']
12
['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.']
23
['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
35
['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.']
47
['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
61
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
12
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
24
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
36
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
48
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
60
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.']
12
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
24
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.']
35
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.']
47
['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
59
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
13
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
25
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
38
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.']
49
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
61
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.']
12
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
24
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
36
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
49
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.']
61
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.']
23
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
35
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
46
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.']
58
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.']
69
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
13
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
26
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
39
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
51
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.']
64
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
13
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
26
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.']
38
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
51
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.']
63
['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
13
['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.']
25
['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.']
36
['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.']
49
['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
72
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
12
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
24
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
36
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
47
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
60
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.']
13
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.']
24
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
36
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.']
48
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
60
['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
12
['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
24
['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
36
['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
48
['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
60
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
13
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
25
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
37
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
49
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
61
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
12
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
24
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
36
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
49
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.']
62
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
13
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
25
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.']
37
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
49
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
61
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
14
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
26
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
38
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.']
50
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.']
61
['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
12
['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
24
['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
36
['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
49
['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.']
61
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.']
13
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
25
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
37
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
48
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
60
['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
12
['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.']
24
['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
36
['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
48
['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.']
59
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
13
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
25
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
38
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
50
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.']
63
['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.']
24
['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
36
['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.']
47
['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
59
['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
71
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
13
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
25
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.']
36
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
49
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
62
['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
24
['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
36
['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
49
['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
61
['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
74
['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
12
['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
24
['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.']
37
['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.']
50
['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.']
62
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.']
12
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
24
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
37
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.']
49
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'dropped', 'the', 'apple', 'there', '.']
60
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.']
13
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
25
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.']
37
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
50
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.']
62
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
12
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
25
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
37
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.']
48
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
61
['John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
12
['John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
24
['John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
36
['John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.']
48
['John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
60
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
13
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
25
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.']
36
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
48
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
60
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
12
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
24
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
37
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
49
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
62
['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
12
['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
25
['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
37
['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.']
49
['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.']
60
['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
34
['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
46
['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
59
['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.']
71
['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
83
['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.']
13
['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
27
['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.']
39
['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.']
51
['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.']
63
['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
12
['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
26
['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.']
38
['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
51
['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
63
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
14
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
25
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
37
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.']
48
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.']
61
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
24
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
36
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
49
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
60
['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
72
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.']
12
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.']
24
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
36
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
48
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
60
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.']
13
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
25
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
37
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
48
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.']
60
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
12
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
24
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
36
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
49
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
61
['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
13
['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.']
26
['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
38
['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
50
['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
62
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
12
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
26
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
38
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.']
50
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.']
60
['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
12
['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
24
['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.']
35
['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
47
['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
59
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
13
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
25
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
38
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
50
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.']
64
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
12
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
25
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
37
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
49
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.']
60
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
12
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
24
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
38
IOPub data rate exceeded. The notebook server will temporarily stop sending output to the client in order to avoid crashing it. To change this limit, set the config variable `--NotebookApp.iopub_data_rate_limit`. Current values: NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec) NotebookApp.rate_limit_window=3.0 (secs)
max_story_length
156
# For Maximum Question Length
for data in all_data:
print(data[1])
print(len(data[1]))
max_question_length = max([len(data[1]) for data in all_data])
Streaming output truncated to the last 5000 lines.
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bedroom', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Daniel', 'in', 'the', 'bathroom', '?']
6
['Is', 'John', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'office', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'kitchen', '?']
6
['Is', 'Daniel', 'in', 'the', 'office', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'John', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Mary', 'in', 'the', 'office', '?']
6
['Is', 'Daniel', 'in', 'the', 'hallway', '?']
6
['Is', 'Daniel', 'in', 'the', 'kitchen', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Sandra', 'in', 'the', 'bathroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'bedroom', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'kitchen', '?']
6
['Is', 'Mary', 'in', 'the', 'bedroom', '?']
6
['Is', 'Sandra', 'in', 'the', 'garden', '?']
6
['Is', 'Mary', 'in', 'the', 'garden', '?']
6
max_question_length
6
In this, we will be converting the data to numerical form.
from keras.preprocessing.sequence import pad_sequences
from keras.preprocessing.text import Tokenizer
# Creating an object of Tokenizer
tokenizer = Tokenizer(filters = []) # because we do not need those filters
tokenizer.fit_on_texts(vocab)
# Obtaining the Word Indices
tokenizer.word_index
{'.': 27, '?': 7, 'apple': 17, 'back': 22, 'bathroom': 23, 'bedroom': 18, 'daniel': 36, 'discarded': 30, 'down': 33, 'dropped': 24, 'football': 20, 'garden': 3, 'got': 4, 'grabbed': 32, 'hallway': 6, 'in': 37, 'is': 13, 'john': 35, 'journeyed': 5, 'kitchen': 1, 'left': 31, 'mary': 19, 'milk': 29, 'moved': 9, 'no': 15, 'office': 10, 'picked': 8, 'put': 26, 'sandra': 25, 'the': 16, 'there': 28, 'to': 14, 'took': 21, 'travelled': 2, 'up': 11, 'went': 12, 'yes': 34}
Appending the story, question and answer from the training dataset into the separate variable.
train_story_text = []
train_question_text = []
train_answers = []
for story, question, answer in train_data:
train_story_text.append(story)
train_question_text.append(question)
train_answers.append(answer)
train_story_sequence = tokenizer.texts_to_sequences(train_story_text)
train_question_sequence = tokenizer.texts_to_sequences(train_question_text)
train_answers_sequence = tokenizer.texts_to_sequences(train_answers)
train_story_text
[['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'], ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'], ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.'], ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.'], ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.'], ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'], ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.'], ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.'], ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.'], ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'], ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'], ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'], ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.'], ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.'], ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'], ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.'], ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'], ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'], ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'], ['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'], ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'], ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'], ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ...]
len(train_story_text)
10000
train_story_sequence
[[19, 9, 14, 16, 23, 27, 25, 5, 14, 16, 18, 27], [19, 9, 14, 16, 23, 27, 25, 5, 14, 16, 18, 27, 19, 12, 22, 14, 16, 18, 27, 36, 12, 22, 14, 16, 6, 27], [19, 9, 14, 16, 23, 27, 25, 5, 14, 16, 18, 27, 19, 12, 22, 14, 16, 18, 27, 36, 12, 22, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27, 36, 12, 22, 14, 16, 23, 27], [19, 9, 14, 16, 23, 27, 25, 5, 14, 16, 18, 27, 19, 12, 22, 14, 16, 18, 27, 36, 12, 22, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27, 36, 12, 22, 14, 16, 23, 27, 36, 8, 11, 16, 20, 28, 27, 36, 12, 14, 16, 18, 27], [19, 9, 14, 16, 23, 27, 25, 5, 14, 16, 18, 27, 19, 12, 22, 14, 16, 18, 27, 36, 12, 22, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27, 36, 12, 22, 14, 16, 23, 27, 36, 8, 11, 16, 20, 28, 27, 36, 12, 14, 16, 18, 27, 35, 2, 14, 16, 10, 27, 25, 12, 14, 16, 3, 27], [25, 4, 16, 20, 28, 27, 19, 12, 14, 16, 18, 27], [25, 4, 16, 20, 28, 27, 19, 12, 14, 16, 18, 27, 36, 4, 16, 17, 28, 27, 25, 2, 14, 16, 6, 27], [25, 4, 16, 20, 28, 27, 19, 12, 14, 16, 18, 27, 36, 4, 16, 17, 28, 27, 25, 2, 14, 16, 6, 27, 25, 9, 14, 16, 3, 27, 19, 2, 14, 16, 1, 27], [25, 4, 16, 20, 28, 27, 19, 12, 14, 16, 18, 27, 36, 4, 16, 17, 28, 27, 25, 2, 14, 16, 6, 27, 25, 9, 14, 16, 3, 27, 19, 2, 14, 16, 1, 27, 25, 12, 22, 14, 16, 18, 27, 36, 26, 33, 16, 17, 27], [25, 4, 16, 20, 28, 27, 19, 12, 14, 16, 18, 27, 36, 4, 16, 17, 28, 27, 25, 2, 14, 16, 6, 27, 25, 9, 14, 16, 3, 27, 19, 2, 14, 16, 1, 27, 25, 12, 22, 14, 16, 18, 27, 36, 26, 33, 16, 17, 27, 25, 26, 33, 16, 20, 27, 25, 5, 14, 16, 10, 27], [25, 12, 22, 14, 16, 6, 27, 25, 9, 14, 16, 10, 27], [25, 12, 22, 14, 16, 6, 27, 25, 9, 14, 16, 10, 27, 19, 9, 14, 16, 6, 27, 36, 5, 14, 16, 3, 27], [25, 12, 22, 14, 16, 6, 27, 25, 9, 14, 16, 10, 27, 19, 9, 14, 16, 6, 27, 36, 5, 14, 16, 3, 27, 19, 5, 14, 16, 10, 27, 19, 12, 22, 14, 16, 6, 27], [25, 12, 22, 14, 16, 6, 27, 25, 9, 14, 16, 10, 27, 19, 9, 14, 16, 6, 27, 36, 5, 14, 16, 3, 27, 19, 5, 14, 16, 10, 27, 19, 12, 22, 14, 16, 6, 27, 35, 32, 16, 17, 28, 27, 19, 9, 14, 16, 3, 27], [25, 12, 22, 14, 16, 6, 27, 25, 9, 14, 16, 10, 27, 19, 9, 14, 16, 6, 27, 36, 5, 14, 16, 3, 27, 19, 5, 14, 16, 10, 27, 19, 12, 22, 14, 16, 6, 27, 35, 32, 16, 17, 28, 27, 19, 9, 14, 16, 3, 27, 36, 12, 22, 14, 16, 6, 27, 35, 5, 14, 16, 23, 27], [25, 9, 14, 16, 10, 27, 35, 12, 22, 14, 16, 3, 27], [25, 9, 14, 16, 10, 27, 35, 12, 22, 14, 16, 3, 27, 25, 12, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27], [25, 9, 14, 16, 10, 27, 35, 12, 22, 14, 16, 3, 27, 25, 12, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27, 19, 12, 14, 16, 10, 27, 25, 4, 16, 17, 28, 27], [25, 9, 14, 16, 10, 27, 35, 12, 22, 14, 16, 3, 27, 25, 12, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27, 19, 12, 14, 16, 10, 27, 25, 4, 16, 17, 28, 27, 19, 5, 14, 16, 6, 27, 19, 5, 14, 16, 18, 27], [25, 9, 14, 16, 10, 27, 35, 12, 22, 14, 16, 3, 27, 25, 12, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27, 19, 12, 14, 16, 10, 27, 25, 4, 16, 17, 28, 27, 19, 5, 14, 16, 6, 27, 19, 5, 14, 16, 18, 27, 19, 5, 14, 16, 3, 27, 19, 12, 14, 16, 1, 27], [36, 4, 16, 17, 28, 27, 35, 8, 11, 16, 20, 28, 27, 36, 31, 16, 17, 27, 36, 9, 14, 16, 1, 27], [36, 4, 16, 17, 28, 27, 35, 8, 11, 16, 20, 28, 27, 36, 31, 16, 17, 27, 36, 9, 14, 16, 1, 27, 25, 12, 22, 14, 16, 23, 27, 25, 32, 16, 17, 28, 27], [36, 4, 16, 17, 28, 27, 35, 8, 11, 16, 20, 28, 27, 36, 31, 16, 17, 27, 36, 9, 14, 16, 1, 27, 25, 12, 22, 14, 16, 23, 27, 25, 32, 16, 17, 28, 27, 35, 24, 16, 20, 27, 35, 4, 16, 20, 28, 27], [36, 4, 16, 17, 28, 27, 35, 8, 11, 16, 20, 28, 27, 36, 31, 16, 17, 27, 36, 9, 14, 16, 1, 27, 25, 12, 22, 14, 16, 23, 27, 25, 32, 16, 17, 28, 27, 35, 24, 16, 20, 27, 35, 4, 16, 20, 28, 27, 25, 26, 33, 16, 17, 27, 25, 32, 16, 17, 28, 27, 36, 2, 14, 16, 6, 27, 25, 31, 16, 17, 27], [36, 4, 16, 17, 28, 27, 35, 8, 11, 16, 20, 28, 27, 36, 31, 16, 17, 27, 36, 9, 14, 16, 1, 27, 25, 12, 22, 14, 16, 23, 27, 25, 32, 16, 17, 28, 27, 35, 24, 16, 20, 27, 35, 4, 16, 20, 28, 27, 25, 26, 33, 16, 17, 27, 25, 32, 16, 17, 28, 27, 36, 2, 14, 16, 6, 27, 25, 31, 16, 17, 27, 35, 24, 16, 20, 27, 25, 8, 11, 16, 17, 28, 27], [25, 5, 14, 16, 3, 27, 25, 12, 22, 14, 16, 18, 27], [25, 5, 14, 16, 3, 27, 25, 12, 22, 14, 16, 18, 27, 36, 21, 16, 17, 28, 27, 25, 2, 14, 16, 10, 27], [25, 5, 14, 16, 3, 27, 25, 12, 22, 14, 16, 18, 27, 36, 21, 16, 17, 28, 27, 25, 2, 14, 16, 10, 27, 35, 12, 14, 16, 6, 27, 25, 9, 14, 16, 1, 27], [25, 5, 14, 16, 3, 27, 25, 12, 22, 14, 16, 18, 27, 36, 21, 16, 17, 28, 27, 25, 2, 14, 16, 10, 27, 35, 12, 14, 16, 6, 27, 25, 9, 14, 16, 1, 27, 36, 5, 14, 16, 23, 27, 36, 12, 22, 14, 16, 18, 27], [25, 5, 14, 16, 3, 27, 25, 12, 22, 14, 16, 18, 27, 36, 21, 16, 17, 28, 27, 25, 2, 14, 16, 10, 27, 35, 12, 14, 16, 6, 27, 25, 9, 14, 16, 1, 27, 36, 5, 14, 16, 23, 27, 36, 12, 22, 14, 16, 18, 27, 36, 2, 14, 16, 1, 27, 25, 12, 14, 16, 18, 27], [35, 12, 14, 16, 23, 27, 25, 21, 16, 20, 28, 27], [35, 12, 14, 16, 23, 27, 25, 21, 16, 20, 28, 27, 19, 5, 14, 16, 1, 27, 35, 5, 14, 16, 18, 27], [35, 12, 14, 16, 23, 27, 25, 21, 16, 20, 28, 27, 19, 5, 14, 16, 1, 27, 35, 5, 14, 16, 18, 27, 35, 21, 16, 17, 28, 27, 35, 31, 16, 17, 27], [35, 12, 14, 16, 23, 27, 25, 21, 16, 20, 28, 27, 19, 5, 14, 16, 1, 27, 35, 5, 14, 16, 18, 27, 35, 21, 16, 17, 28, 27, 35, 31, 16, 17, 27, 36, 32, 16, 29, 28, 27, 25, 24, 16, 20, 27], [35, 12, 14, 16, 23, 27, 25, 21, 16, 20, 28, 27, 19, 5, 14, 16, 1, 27, 35, 5, 14, 16, 18, 27, 35, 21, 16, 17, 28, 27, 35, 31, 16, 17, 27, 36, 32, 16, 29, 28, 27, 25, 24, 16, 20, 27, 19, 8, 11, 16, 20, 28, 27, 35, 4, 16, 17, 28, 27, 19, 24, 16, 20, 27, 36, 12, 22, 14, 16, 1, 27], [25, 12, 14, 16, 3, 27, 25, 32, 16, 29, 28, 27], [25, 12, 14, 16, 3, 27, 25, 32, 16, 29, 28, 27, 19, 9, 14, 16, 10, 27, 19, 12, 14, 16, 3, 27], [25, 12, 14, 16, 3, 27, 25, 32, 16, 29, 28, 27, 19, 9, 14, 16, 10, 27, 19, 12, 14, 16, 3, 27, 36, 12, 22, 14, 16, 10, 27, 19, 5, 14, 16, 18, 27], [25, 12, 14, 16, 3, 27, 25, 32, 16, 29, 28, 27, 19, 9, 14, 16, 10, 27, 19, 12, 14, 16, 3, 27, 36, 12, 22, 14, 16, 10, 27, 19, 5, 14, 16, 18, 27, 25, 12, 22, 14, 16, 6, 27, 25, 5, 14, 16, 10, 27], [25, 12, 14, 16, 3, 27, 25, 32, 16, 29, 28, 27, 19, 9, 14, 16, 10, 27, 19, 12, 14, 16, 3, 27, 36, 12, 22, 14, 16, 10, 27, 19, 5, 14, 16, 18, 27, 25, 12, 22, 14, 16, 6, 27, 25, 5, 14, 16, 10, 27, 25, 5, 14, 16, 3, 27, 19, 5, 14, 16, 6, 27], [25, 32, 16, 20, 28, 27, 25, 12, 22, 14, 16, 6, 27], [25, 32, 16, 20, 28, 27, 25, 12, 22, 14, 16, 6, 27, 19, 5, 14, 16, 1, 27, 19, 9, 14, 16, 10, 27], [25, 32, 16, 20, 28, 27, 25, 12, 22, 14, 16, 6, 27, 19, 5, 14, 16, 1, 27, 19, 9, 14, 16, 10, 27, 35, 9, 14, 16, 1, 27, 25, 26, 33, 16, 20, 28, 27], [25, 32, 16, 20, 28, 27, 25, 12, 22, 14, 16, 6, 27, 19, 5, 14, 16, 1, 27, 19, 9, 14, 16, 10, 27, 35, 9, 14, 16, 1, 27, 25, 26, 33, 16, 20, 28, 27, 19, 21, 16, 17, 28, 27, 35, 2, 14, 16, 6, 27], [25, 32, 16, 20, 28, 27, 25, 12, 22, 14, 16, 6, 27, 19, 5, 14, 16, 1, 27, 19, 9, 14, 16, 10, 27, 35, 9, 14, 16, 1, 27, 25, 26, 33, 16, 20, 28, 27, 19, 21, 16, 17, 28, 27, 35, 2, 14, 16, 6, 27, 36, 9, 14, 16, 6, 27, 19, 2, 14, 16, 1, 27], [36, 5, 14, 16, 18, 27, 35, 9, 14, 16, 18, 27], [36, 5, 14, 16, 18, 27, 35, 9, 14, 16, 18, 27, 36, 21, 16, 17, 28, 27, 19, 9, 14, 16, 10, 27], [36, 5, 14, 16, 18, 27, 35, 9, 14, 16, 18, 27, 36, 21, 16, 17, 28, 27, 19, 9, 14, 16, 10, 27, 25, 12, 14, 16, 10, 27, 36, 12, 14, 16, 23, 27], [36, 5, 14, 16, 18, 27, 35, 9, 14, 16, 18, 27, 36, 21, 16, 17, 28, 27, 19, 9, 14, 16, 10, 27, 25, 12, 14, 16, 10, 27, 36, 12, 14, 16, 23, 27, 36, 26, 33, 16, 17, 27, 25, 5, 14, 16, 1, 27], [36, 5, 14, 16, 18, 27, 35, 9, 14, 16, 18, 27, 36, 21, 16, 17, 28, 27, 19, 9, 14, 16, 10, 27, 25, 12, 14, 16, 10, 27, 36, 12, 14, 16, 23, 27, 36, 26, 33, 16, 17, 27, 25, 5, 14, 16, 1, 27, 36, 32, 16, 17, 28, 27, 36, 21, 16, 29, 28, 27], [19, 12, 22, 14, 16, 23, 27, 36, 12, 14, 16, 10, 27], [19, 12, 22, 14, 16, 23, 27, 36, 12, 14, 16, 10, 27, 19, 4, 16, 29, 28, 27, 25, 2, 14, 16, 23, 27], [19, 12, 22, 14, 16, 23, 27, 36, 12, 14, 16, 10, 27, 19, 4, 16, 29, 28, 27, 25, 2, 14, 16, 23, 27, 19, 12, 22, 14, 16, 18, 27, 19, 8, 11, 16, 17, 28, 27], [19, 12, 22, 14, 16, 23, 27, 36, 12, 14, 16, 10, 27, 19, 4, 16, 29, 28, 27, 25, 2, 14, 16, 23, 27, 19, 12, 22, 14, 16, 18, 27, 19, 8, 11, 16, 17, 28, 27, 25, 9, 14, 16, 6, 27, 19, 30, 16, 17, 27], [19, 12, 22, 14, 16, 23, 27, 36, 12, 14, 16, 10, 27, 19, 4, 16, 29, 28, 27, 25, 2, 14, 16, 23, 27, 19, 12, 22, 14, 16, 18, 27, 19, 8, 11, 16, 17, 28, 27, 25, 9, 14, 16, 6, 27, 19, 30, 16, 17, 27, 36, 5, 14, 16, 1, 27, 19, 21, 16, 17, 28, 27], [36, 5, 14, 16, 6, 27, 19, 12, 22, 14, 16, 1, 27], [36, 5, 14, 16, 6, 27, 19, 12, 22, 14, 16, 1, 27, 35, 9, 14, 16, 6, 27, 35, 8, 11, 16, 17, 28, 27], [36, 5, 14, 16, 6, 27, 19, 12, 22, 14, 16, 1, 27, 35, 9, 14, 16, 6, 27, 35, 8, 11, 16, 17, 28, 27, 36, 9, 14, 16, 23, 27, 35, 12, 14, 16, 3, 27], [36, 5, 14, 16, 6, 27, 19, 12, 22, 14, 16, 1, 27, 35, 9, 14, 16, 6, 27, 35, 8, 11, 16, 17, 28, 27, 36, 9, 14, 16, 23, 27, 35, 12, 14, 16, 3, 27, 19, 9, 14, 16, 6, 27, 35, 24, 16, 17, 27], [36, 5, 14, 16, 6, 27, 19, 12, 22, 14, 16, 1, 27, 35, 9, 14, 16, 6, 27, 35, 8, 11, 16, 17, 28, 27, 36, 9, 14, 16, 23, 27, 35, 12, 14, 16, 3, 27, 19, 9, 14, 16, 6, 27, 35, 24, 16, 17, 27, 25, 32, 16, 17, 28, 27, 25, 31, 16, 17, 27], [35, 5, 14, 16, 6, 27, 25, 21, 16, 20, 28, 27], [35, 5, 14, 16, 6, 27, 25, 21, 16, 20, 28, 27, 35, 5, 14, 16, 23, 27, 35, 5, 14, 16, 10, 27], [35, 5, 14, 16, 6, 27, 25, 21, 16, 20, 28, 27, 35, 5, 14, 16, 23, 27, 35, 5, 14, 16, 10, 27, 36, 5, 14, 16, 6, 27, 25, 30, 16, 20, 28, 27], [35, 5, 14, 16, 6, 27, 25, 21, 16, 20, 28, 27, 35, 5, 14, 16, 23, 27, 35, 5, 14, 16, 10, 27, 36, 5, 14, 16, 6, 27, 25, 30, 16, 20, 28, 27, 36, 9, 14, 16, 10, 27, 35, 8, 11, 16, 17, 28, 27], [35, 5, 14, 16, 6, 27, 25, 21, 16, 20, 28, 27, 35, 5, 14, 16, 23, 27, 35, 5, 14, 16, 10, 27, 36, 5, 14, 16, 6, 27, 25, 30, 16, 20, 28, 27, 36, 9, 14, 16, 10, 27, 35, 8, 11, 16, 17, 28, 27, 35, 9, 14, 16, 23, 27, 19, 5, 14, 16, 23, 27], [25, 12, 22, 14, 16, 23, 27, 25, 21, 16, 17, 28, 27], [25, 12, 22, 14, 16, 23, 27, 25, 21, 16, 17, 28, 27, 25, 8, 11, 16, 20, 28, 27, 35, 5, 14, 16, 23, 27], [25, 12, 22, 14, 16, 23, 27, 25, 21, 16, 17, 28, 27, 25, 8, 11, 16, 20, 28, 27, 35, 5, 14, 16, 23, 27, 19, 12, 22, 14, 16, 18, 27, 35, 9, 14, 16, 1, 27], [25, 12, 22, 14, 16, 23, 27, 25, 21, 16, 17, 28, 27, 25, 8, 11, 16, 20, 28, 27, 35, 5, 14, 16, 23, 27, 19, 12, 22, 14, 16, 18, 27, 35, 9, 14, 16, 1, 27, 35, 12, 14, 16, 10, 27, 25, 21, 16, 29, 28, 27], [25, 12, 22, 14, 16, 23, 27, 25, 21, 16, 17, 28, 27, 25, 8, 11, 16, 20, 28, 27, 35, 5, 14, 16, 23, 27, 19, 12, 22, 14, 16, 18, 27, 35, 9, 14, 16, 1, 27, 35, 12, 14, 16, 10, 27, 25, 21, 16, 29, 28, 27, 25, 31, 16, 20, 27, 25, 31, 16, 17, 28, 27], [35, 12, 22, 14, 16, 6, 27, 36, 2, 14, 16, 6, 27], [35, 12, 22, 14, 16, 6, 27, 36, 2, 14, 16, 6, 27, 36, 8, 11, 16, 29, 28, 27, 36, 31, 16, 29, 27], [35, 12, 22, 14, 16, 6, 27, 36, 2, 14, 16, 6, 27, 36, 8, 11, 16, 29, 28, 27, 36, 31, 16, 29, 27, 36, 12, 14, 16, 18, 27, 36, 12, 22, 14, 16, 6, 27], [35, 12, 22, 14, 16, 6, 27, 36, 2, 14, 16, 6, 27, 36, 8, 11, 16, 29, 28, 27, 36, 31, 16, 29, 27, 36, 12, 14, 16, 18, 27, 36, 12, 22, 14, 16, 6, 27, 36, 8, 11, 16, 29, 28, 27, 35, 8, 11, 16, 20, 28, 27], [35, 12, 22, 14, 16, 6, 27, 36, 2, 14, 16, 6, 27, 36, 8, 11, 16, 29, 28, 27, 36, 31, 16, 29, 27, 36, 12, 14, 16, 18, 27, 36, 12, 22, 14, 16, 6, 27, 36, 8, 11, 16, 29, 28, 27, 35, 8, 11, 16, 20, 28, 27, 19, 12, 22, 14, 16, 23, 27, 36, 9, 14, 16, 18, 27], [19, 4, 16, 20, 28, 27, 36, 2, 14, 16, 18, 27], [19, 4, 16, 20, 28, 27, 36, 2, 14, 16, 18, 27, 25, 4, 16, 29, 28, 27, 25, 26, 33, 16, 29, 27], [19, 4, 16, 20, 28, 27, 36, 2, 14, 16, 18, 27, 25, 4, 16, 29, 28, 27, 25, 26, 33, 16, 29, 27, 25, 5, 14, 16, 10, 27, 36, 12, 22, 14, 16, 1, 27], [19, 4, 16, 20, 28, 27, 36, 2, 14, 16, 18, 27, 25, 4, 16, 29, 28, 27, 25, 26, 33, 16, 29, 27, 25, 5, 14, 16, 10, 27, 36, 12, 22, 14, 16, 1, 27, 36, 9, 14, 16, 23, 27, 19, 31, 16, 20, 27], [19, 4, 16, 20, 28, 27, 36, 2, 14, 16, 18, 27, 25, 4, 16, 29, 28, 27, 25, 26, 33, 16, 29, 27, 25, 5, 14, 16, 10, 27, 36, 12, 22, 14, 16, 1, 27, 36, 9, 14, 16, 23, 27, 19, 31, 16, 20, 27, 19, 12, 22, 14, 16, 1, 27, 35, 5, 14, 16, 1, 27], [25, 12, 22, 14, 16, 10, 27, 19, 5, 14, 16, 18, 27], [25, 12, 22, 14, 16, 10, 27, 19, 5, 14, 16, 18, 27, 25, 4, 16, 20, 28, 27, 25, 26, 33, 16, 20, 27], [25, 12, 22, 14, 16, 10, 27, 19, 5, 14, 16, 18, 27, 25, 4, 16, 20, 28, 27, 25, 26, 33, 16, 20, 27, 35, 12, 22, 14, 16, 10, 27, 19, 32, 16, 29, 28, 27], [25, 12, 22, 14, 16, 10, 27, 19, 5, 14, 16, 18, 27, 25, 4, 16, 20, 28, 27, 25, 26, 33, 16, 20, 27, 35, 12, 22, 14, 16, 10, 27, 19, 32, 16, 29, 28, 27, 25, 8, 11, 16, 20, 28, 27, 35, 12, 14, 16, 18, 27], [25, 12, 22, 14, 16, 10, 27, 19, 5, 14, 16, 18, 27, 25, 4, 16, 20, 28, 27, 25, 26, 33, 16, 20, 27, 35, 12, 22, 14, 16, 10, 27, 19, 32, 16, 29, 28, 27, 25, 8, 11, 16, 20, 28, 27, 35, 12, 14, 16, 18, 27, 25, 12, 14, 16, 1, 27, 36, 12, 22, 14, 16, 23, 27], [25, 12, 14, 16, 1, 27, 25, 2, 14, 16, 23, 27], [25, 12, 14, 16, 1, 27, 25, 2, 14, 16, 23, 27, 36, 12, 22, 14, 16, 18, 27, 19, 5, 14, 16, 3, 27], [25, 12, 14, 16, 1, 27, 25, 2, 14, 16, 23, 27, 36, 12, 22, 14, 16, 18, 27, 19, 5, 14, 16, 3, 27, 19, 12, 22, 14, 16, 10, 27, 36, 12, 22, 14, 16, 23, 27], [25, 12, 14, 16, 1, 27, 25, 2, 14, 16, 23, 27, 36, 12, 22, 14, 16, 18, 27, 19, 5, 14, 16, 3, 27, 19, 12, 22, 14, 16, 10, 27, 36, 12, 22, 14, 16, 23, 27, 35, 12, 22, 14, 16, 18, 27, 19, 12, 22, 14, 16, 3, 27], [25, 12, 14, 16, 1, 27, 25, 2, 14, 16, 23, 27, 36, 12, 22, 14, 16, 18, 27, 19, 5, 14, 16, 3, 27, 19, 12, 22, 14, 16, 10, 27, 36, 12, 22, 14, 16, 23, 27, 35, 12, 22, 14, 16, 18, 27, 19, 12, 22, 14, 16, 3, 27, 36, 12, 14, 16, 18, 27, 19, 9, 14, 16, 23, 27], [35, 2, 14, 16, 3, 27, 25, 2, 14, 16, 3, 27], [35, 2, 14, 16, 3, 27, 25, 2, 14, 16, 3, 27, 19, 9, 14, 16, 18, 27, 19, 2, 14, 16, 1, 27], [35, 2, 14, 16, 3, 27, 25, 2, 14, 16, 3, 27, 19, 9, 14, 16, 18, 27, 19, 2, 14, 16, 1, 27, 35, 12, 14, 16, 10, 27, 35, 32, 16, 29, 28, 27], [35, 2, 14, 16, 3, 27, 25, 2, 14, 16, 3, 27, 19, 9, 14, 16, 18, 27, 19, 2, 14, 16, 1, 27, 35, 12, 14, 16, 10, 27, 35, 32, 16, 29, 28, 27, 36, 5, 14, 16, 6, 27, 25, 4, 16, 20, 28, 27], [35, 2, 14, 16, 3, 27, 25, 2, 14, 16, 3, 27, 19, 9, 14, 16, 18, 27, 19, 2, 14, 16, 1, 27, 35, 12, 14, 16, 10, 27, 35, 32, 16, 29, 28, 27, 36, 5, 14, 16, 6, 27, 25, 4, 16, 20, 28, 27, 25, 5, 14, 16, 18, 27, 25, 26, 33, 16, 20, 27], [36, 32, 16, 17, 28, 27, 36, 12, 14, 16, 18, 27], [36, 32, 16, 17, 28, 27, 36, 12, 14, 16, 18, 27, 35, 9, 14, 16, 3, 27, 25, 5, 14, 16, 10, 27], [36, 32, 16, 17, 28, 27, 36, 12, 14, 16, 18, 27, 35, 9, 14, 16, 3, 27, 25, 5, 14, 16, 10, 27, 36, 26, 33, 16, 17, 27, 19, 12, 14, 16, 18, 27], [36, 32, 16, 17, 28, 27, 36, 12, 14, 16, 18, 27, 35, 9, 14, 16, 3, 27, 25, 5, 14, 16, 10, 27, 36, 26, 33, 16, 17, 27, 19, 12, 14, 16, 18, 27, 19, 32, 16, 17, 28, 27, 25, 12, 22, 14, 16, 3, 27], [36, 32, 16, 17, 28, 27, 36, 12, 14, 16, 18, 27, 35, 9, 14, 16, 3, 27, 25, 5, 14, 16, 10, 27, 36, 26, 33, 16, 17, 27, 19, 12, 14, 16, 18, 27, 19, 32, 16, 17, 28, 27, 25, 12, 22, 14, 16, 3, 27, 19, 12, 14, 16, 1, 27, 36, 12, 14, 16, 10, 27], [19, 2, 14, 16, 18, 27, 36, 21, 16, 20, 28, 27], [19, 2, 14, 16, 18, 27, 36, 21, 16, 20, 28, 27, 36, 12, 14, 16, 23, 27, 36, 12, 22, 14, 16, 1, 27], [19, 2, 14, 16, 18, 27, 36, 21, 16, 20, 28, 27, 36, 12, 14, 16, 23, 27, 36, 12, 22, 14, 16, 1, 27, 19, 2, 14, 16, 3, 27, 19, 12, 22, 14, 16, 6, 27], [19, 2, 14, 16, 18, 27, 36, 21, 16, 20, 28, 27, 36, 12, 14, 16, 23, 27, 36, 12, 22, 14, 16, 1, 27, 19, 2, 14, 16, 3, 27, 19, 12, 22, 14, 16, 6, 27, 19, 12, 14, 16, 10, 27, 19, 2, 14, 16, 18, 27], [19, 2, 14, 16, 18, 27, 36, 21, 16, 20, 28, 27, 36, 12, 14, 16, 23, 27, 36, 12, 22, 14, 16, 1, 27, 19, 2, 14, 16, 3, 27, 19, 12, 22, 14, 16, 6, 27, 19, 12, 14, 16, 10, 27, 19, 2, 14, 16, 18, 27, 36, 30, 16, 20, 27, 35, 5, 14, 16, 18, 27], [25, 4, 16, 20, 28, 27, 36, 21, 16, 17, 28, 27, 19, 2, 14, 16, 10, 27, 36, 12, 22, 14, 16, 23, 27], [25, 4, 16, 20, 28, 27, 36, 21, 16, 17, 28, 27, 19, 2, 14, 16, 10, 27, 36, 12, 22, 14, 16, 23, 27, 25, 5, 14, 16, 10, 27, 19, 32, 16, 29, 28, 27], [25, 4, 16, 20, 28, 27, 36, 21, 16, 17, 28, 27, 19, 2, 14, 16, 10, 27, 36, 12, 22, 14, 16, 23, 27, 25, 5, 14, 16, 10, 27, 19, 32, 16, 29, 28, 27, 36, 5, 14, 16, 1, 27, 35, 12, 14, 16, 18, 27], [25, 4, 16, 20, 28, 27, 36, 21, 16, 17, 28, 27, 19, 2, 14, 16, 10, 27, 36, 12, 22, 14, 16, 23, 27, 25, 5, 14, 16, 10, 27, 19, 32, 16, 29, 28, 27, 36, 5, 14, 16, 1, 27, 35, 12, 14, 16, 18, 27, 19, 24, 16, 29, 27, 25, 4, 16, 29, 28, 27], [25, 4, 16, 20, 28, 27, 36, 21, 16, 17, 28, 27, 19, 2, 14, 16, 10, 27, 36, 12, 22, 14, 16, 23, 27, 25, 5, 14, 16, 10, 27, 19, 32, 16, 29, 28, 27, 36, 5, 14, 16, 1, 27, 35, 12, 14, 16, 18, 27, 19, 24, 16, 29, 27, 25, 4, 16, 29, 28, 27, 35, 9, 14, 16, 6, 27, 25, 9, 14, 16, 1, 27], [35, 12, 14, 16, 6, 27, 25, 8, 11, 16, 17, 28, 27], [35, 12, 14, 16, 6, 27, 25, 8, 11, 16, 17, 28, 27, 36, 9, 14, 16, 3, 27, 19, 5, 14, 16, 18, 27], [35, 12, 14, 16, 6, 27, 25, 8, 11, 16, 17, 28, 27, 36, 9, 14, 16, 3, 27, 19, 5, 14, 16, 18, 27, 19, 9, 14, 16, 23, 27, 25, 31, 16, 17, 27], [35, 12, 14, 16, 6, 27, 25, 8, 11, 16, 17, 28, 27, 36, 9, 14, 16, 3, 27, 19, 5, 14, 16, 18, 27, 19, 9, 14, 16, 23, 27, 25, 31, 16, 17, 27, 19, 32, 16, 29, 28, 27, 36, 9, 14, 16, 10, 27], [35, 12, 14, 16, 6, 27, 25, 8, 11, 16, 17, 28, 27, 36, 9, 14, 16, 3, 27, 19, 5, 14, 16, 18, 27, 19, 9, 14, 16, 23, 27, 25, 31, 16, 17, 27, 19, 32, 16, 29, 28, 27, 36, 9, 14, 16, 10, 27, 35, 21, 16, 20, 28, 27, 35, 9, 14, 16, 18, 27], [36, 2, 14, 16, 23, 27, 35, 4, 16, 17, 28, 27], [36, 2, 14, 16, 23, 27, 35, 4, 16, 17, 28, 27, 35, 26, 33, 16, 17, 27, 19, 2, 14, 16, 1, 27], [36, 2, 14, 16, 23, 27, 35, 4, 16, 17, 28, 27, 35, 26, 33, 16, 17, 27, 19, 2, 14, 16, 1, 27, 35, 32, 16, 17, 28, 27, 36, 2, 14, 16, 6, 27], [36, 2, 14, 16, 23, 27, 35, 4, 16, 17, 28, 27, 35, 26, 33, 16, 17, 27, 19, 2, 14, 16, 1, 27, 35, 32, 16, 17, 28, 27, 36, 2, 14, 16, 6, 27, 36, 2, 14, 16, 3, 27, 36, 2, 14, 16, 1, 27], [36, 2, 14, 16, 23, 27, 35, 4, 16, 17, 28, 27, 35, 26, 33, 16, 17, 27, 19, 2, 14, 16, 1, 27, 35, 32, 16, 17, 28, 27, 36, 2, 14, 16, 6, 27, 36, 2, 14, 16, 3, 27, 36, 2, 14, 16, 1, 27, 19, 9, 14, 16, 3, 27, 25, 12, 14, 16, 18, 27], [35, 9, 14, 16, 10, 27, 19, 4, 16, 20, 28, 27], [35, 9, 14, 16, 10, 27, 19, 4, 16, 20, 28, 27, 25, 12, 14, 16, 18, 27, 19, 30, 16, 20, 27], [35, 9, 14, 16, 10, 27, 19, 4, 16, 20, 28, 27, 25, 12, 14, 16, 18, 27, 19, 30, 16, 20, 27, 25, 8, 11, 16, 20, 28, 27, 35, 5, 14, 16, 23, 27], [35, 9, 14, 16, 10, 27, 19, 4, 16, 20, 28, 27, 25, 12, 14, 16, 18, 27, 19, 30, 16, 20, 27, 25, 8, 11, 16, 20, 28, 27, 35, 5, 14, 16, 23, 27, 25, 31, 16, 20, 27, 25, 9, 14, 16, 6, 27], [35, 9, 14, 16, 10, 27, 19, 4, 16, 20, 28, 27, 25, 12, 14, 16, 18, 27, 19, 30, 16, 20, 27, 25, 8, 11, 16, 20, 28, 27, 35, 5, 14, 16, 23, 27, 25, 31, 16, 20, 27, 25, 9, 14, 16, 6, 27, 35, 21, 16, 17, 28, 27, 35, 9, 14, 16, 1, 27], [19, 12, 14, 16, 1, 27, 19, 2, 14, 16, 10, 27], [19, 12, 14, 16, 1, 27, 19, 2, 14, 16, 10, 27, 36, 12, 14, 16, 6, 27, 36, 21, 16, 20, 28, 27], [19, 12, 14, 16, 1, 27, 19, 2, 14, 16, 10, 27, 36, 12, 14, 16, 6, 27, 36, 21, 16, 20, 28, 27, 25, 2, 14, 16, 10, 27, 36, 24, 16, 20, 27], [19, 12, 14, 16, 1, 27, 19, 2, 14, 16, 10, 27, 36, 12, 14, 16, 6, 27, 36, 21, 16, 20, 28, 27, 25, 2, 14, 16, 10, 27, 36, 24, 16, 20, 27, 25, 2, 14, 16, 23, 27, 36, 12, 22, 14, 16, 1, 27], [19, 12, 14, 16, 1, 27, 19, 2, 14, 16, 10, 27, 36, 12, 14, 16, 6, 27, 36, 21, 16, 20, 28, 27, 25, 2, 14, 16, 10, 27, 36, 24, 16, 20, 27, 25, 2, 14, 16, 23, 27, 36, 12, 22, 14, 16, 1, 27, 25, 12, 14, 16, 10, 27, 25, 12, 22, 14, 16, 1, 27], [35, 21, 16, 17, 28, 27, 25, 9, 14, 16, 18, 27], [35, 21, 16, 17, 28, 27, 25, 9, 14, 16, 18, 27, 19, 12, 14, 16, 10, 27, 35, 30, 16, 17, 27], [35, 21, 16, 17, 28, 27, 25, 9, 14, 16, 18, 27, 19, 12, 14, 16, 10, 27, 35, 30, 16, 17, 27, 35, 8, 11, 16, 17, 28, 27, 35, 12, 14, 16, 10, 27], [35, 21, 16, 17, 28, 27, 25, 9, 14, 16, 18, 27, 19, 12, 14, 16, 10, 27, 35, 30, 16, 17, 27, 35, 8, 11, 16, 17, 28, 27, 35, 12, 14, 16, 10, 27, 36, 5, 14, 16, 1, 27, 25, 12, 22, 14, 16, 6, 27], [35, 21, 16, 17, 28, 27, 25, 9, 14, 16, 18, 27, 19, 12, 14, 16, 10, 27, 35, 30, 16, 17, 27, 35, 8, 11, 16, 17, 28, 27, 35, 12, 14, 16, 10, 27, 36, 5, 14, 16, 1, 27, 25, 12, 22, 14, 16, 6, 27, 36, 2, 14, 16, 18, 27, 35, 12, 22, 14, 16, 1, 27], [25, 2, 14, 16, 18, 27, 36, 5, 14, 16, 6, 27], [25, 2, 14, 16, 18, 27, 36, 5, 14, 16, 6, 27, 25, 8, 11, 16, 17, 28, 27, 19, 12, 14, 16, 23, 27], [25, 2, 14, 16, 18, 27, 36, 5, 14, 16, 6, 27, 25, 8, 11, 16, 17, 28, 27, 19, 12, 14, 16, 23, 27, 25, 21, 16, 20, 28, 27, 35, 2, 14, 16, 1, 27], [25, 2, 14, 16, 18, 27, 36, 5, 14, 16, 6, 27, 25, 8, 11, 16, 17, 28, 27, 19, 12, 14, 16, 23, 27, 25, 21, 16, 20, 28, 27, 35, 2, 14, 16, 1, 27, 19, 4, 16, 29, 28, 27, 19, 30, 16, 29, 27], [25, 2, 14, 16, 18, 27, 36, 5, 14, 16, 6, 27, 25, 8, 11, 16, 17, 28, 27, 19, 12, 14, 16, 23, 27, 25, 21, 16, 20, 28, 27, 35, 2, 14, 16, 1, 27, 19, 4, 16, 29, 28, 27, 19, 30, 16, 29, 27, 19, 21, 16, 29, 28, 27, 25, 30, 16, 20, 27], [35, 12, 14, 16, 3, 27, 36, 4, 16, 17, 28, 27], [35, 12, 14, 16, 3, 27, 36, 4, 16, 17, 28, 27, 35, 8, 11, 16, 20, 28, 27, 35, 9, 14, 16, 10, 27], [35, 12, 14, 16, 3, 27, 36, 4, 16, 17, 28, 27, 35, 8, 11, 16, 20, 28, 27, 35, 9, 14, 16, 10, 27, 35, 9, 14, 16, 3, 27, 36, 5, 14, 16, 3, 27], [35, 12, 14, 16, 3, 27, 36, 4, 16, 17, 28, 27, 35, 8, 11, 16, 20, 28, 27, 35, 9, 14, 16, 10, 27, 35, 9, 14, 16, 3, 27, 36, 5, 14, 16, 3, 27, 36, 24, 16, 17, 28, 27, 36, 12, 14, 16, 23, 27], [35, 12, 14, 16, 3, 27, 36, 4, 16, 17, 28, 27, 35, 8, 11, 16, 20, 28, 27, 35, 9, 14, 16, 10, 27, 35, 9, 14, 16, 3, 27, 36, 5, 14, 16, 3, 27, 36, 24, 16, 17, 28, 27, 36, 12, 14, 16, 23, 27, 35, 4, 16, 17, 28, 27, 35, 30, 16, 20, 27], [19, 12, 14, 16, 1, 27, 36, 2, 14, 16, 18, 27], [19, 12, 14, 16, 1, 27, 36, 2, 14, 16, 18, 27, 36, 32, 16, 17, 28, 27, 35, 9, 14, 16, 18, 27], [19, 12, 14, 16, 1, 27, 36, 2, 14, 16, 18, 27, 36, 32, 16, 17, 28, 27, 35, 9, 14, 16, 18, 27, 25, 2, 14, 16, 18, 27, 36, 5, 14, 16, 6, 27], [19, 12, 14, 16, 1, 27, 36, 2, 14, 16, 18, 27, 36, 32, 16, 17, 28, 27, 35, 9, 14, 16, 18, 27, 25, 2, 14, 16, 18, 27, 36, 5, 14, 16, 6, 27, 36, 12, 22, 14, 16, 18, 27, 19, 2, 14, 16, 10, 27], [19, 12, 14, 16, 1, 27, 36, 2, 14, 16, 18, 27, 36, 32, 16, 17, 28, 27, 35, 9, 14, 16, 18, 27, 25, 2, 14, 16, 18, 27, 36, 5, 14, 16, 6, 27, 36, 12, 22, 14, 16, 18, 27, 19, 2, 14, 16, 10, 27, 35, 2, 14, 16, 3, 27, 25, 9, 14, 16, 6, 27], [19, 9, 14, 16, 10, 27, 36, 12, 14, 16, 3, 27], [19, 9, 14, 16, 10, 27, 36, 12, 14, 16, 3, 27, 36, 8, 11, 16, 20, 28, 27, 25, 12, 14, 16, 1, 27], [19, 9, 14, 16, 10, 27, 36, 12, 14, 16, 3, 27, 36, 8, 11, 16, 20, 28, 27, 25, 12, 14, 16, 1, 27, 36, 31, 16, 20, 27, 19, 12, 22, 14, 16, 18, 27], [19, 9, 14, 16, 10, 27, 36, 12, 14, 16, 3, 27, 36, 8, 11, 16, 20, 28, 27, 25, 12, 14, 16, 1, 27, 36, 31, 16, 20, 27, 19, 12, 22, 14, 16, 18, 27, 35, 5, 14, 16, 10, 27, 19, 2, 14, 16, 23, 27], [19, 9, 14, 16, 10, 27, 36, 12, 14, 16, 3, 27, 36, 8, 11, 16, 20, 28, 27, 25, 12, 14, 16, 1, 27, 36, 31, 16, 20, 27, 19, 12, 22, 14, 16, 18, 27, 35, 5, 14, 16, 10, 27, 19, 2, 14, 16, 23, 27, 19, 9, 14, 16, 18, 27, 35, 5, 14, 16, 1, 27], [25, 2, 14, 16, 10, 27, 36, 9, 14, 16, 6, 27], [25, 2, 14, 16, 10, 27, 36, 9, 14, 16, 6, 27, 19, 21, 16, 17, 28, 27, 25, 2, 14, 16, 3, 27], [25, 2, 14, 16, 10, 27, 36, 9, 14, 16, 6, 27, 19, 21, 16, 17, 28, 27, 25, 2, 14, 16, 3, 27, 35, 5, 14, 16, 23, 27, 36, 12, 22, 14, 16, 10, 27], [25, 2, 14, 16, 10, 27, 36, 9, 14, 16, 6, 27, 19, 21, 16, 17, 28, 27, 25, 2, 14, 16, 3, 27, 35, 5, 14, 16, 23, 27, 36, 12, 22, 14, 16, 10, 27, 35, 9, 14, 16, 6, 27, 25, 2, 14, 16, 18, 27], [25, 2, 14, 16, 10, 27, 36, 9, 14, 16, 6, 27, 19, 21, 16, 17, 28, 27, 25, 2, 14, 16, 3, 27, 35, 5, 14, 16, 23, 27, 36, 12, 22, 14, 16, 10, 27, 35, 9, 14, 16, 6, 27, 25, 2, 14, 16, 18, 27, 19, 2, 14, 16, 23, 27, 19, 31, 16, 17, 27], [35, 4, 16, 20, 28, 27, 25, 12, 14, 16, 1, 27], [35, 4, 16, 20, 28, 27, 25, 12, 14, 16, 1, 27, 35, 12, 14, 16, 23, 27, 35, 12, 22, 14, 16, 3, 27], [35, 4, 16, 20, 28, 27, 25, 12, 14, 16, 1, 27, 35, 12, 14, 16, 23, 27, 35, 12, 22, 14, 16, 3, 27, 35, 9, 14, 16, 23, 27, 35, 12, 22, 14, 16, 3, 27], [35, 4, 16, 20, 28, 27, 25, 12, 14, 16, 1, 27, 35, 12, 14, 16, 23, 27, 35, 12, 22, 14, 16, 3, 27, 35, 9, 14, 16, 23, 27, 35, 12, 22, 14, 16, 3, 27, 35, 24, 16, 20, 28, 27, 35, 21, 16, 20, 28, 27], [35, 4, 16, 20, 28, 27, 25, 12, 14, 16, 1, 27, 35, 12, 14, 16, 23, 27, 35, 12, 22, 14, 16, 3, 27, 35, 9, 14, 16, 23, 27, 35, 12, 22, 14, 16, 3, 27, 35, 24, 16, 20, 28, 27, 35, 21, 16, 20, 28, 27, 35, 30, 16, 20, 27, 35, 5, 14, 16, 18, 27], [36, 5, 14, 16, 6, 27, 19, 9, 14, 16, 3, 27], [36, 5, 14, 16, 6, 27, 19, 9, 14, 16, 3, 27, 25, 2, 14, 16, 18, 27, 25, 5, 14, 16, 6, 27], [36, 5, 14, 16, 6, 27, 19, 9, 14, 16, 3, 27, 25, 2, 14, 16, 18, 27, 25, 5, 14, 16, 6, 27, 35, 5, 14, 16, 1, 27, 25, 5, 14, 16, 1, 27], [36, 5, 14, 16, 6, 27, 19, 9, 14, 16, 3, 27, 25, 2, 14, 16, 18, 27, 25, 5, 14, 16, 6, 27, 35, 5, 14, 16, 1, 27, 25, 5, 14, 16, 1, 27, 35, 32, 16, 29, 28, 27, 25, 8, 11, 16, 20, 28, 27], [36, 5, 14, 16, 6, 27, 19, 9, 14, 16, 3, 27, 25, 2, 14, 16, 18, 27, 25, 5, 14, 16, 6, 27, 35, 5, 14, 16, 1, 27, 25, 5, 14, 16, 1, 27, 35, 32, 16, 29, 28, 27, 25, 8, 11, 16, 20, 28, 27, 25, 24, 16, 20, 27, 19, 12, 22, 14, 16, 6, 27], [25, 9, 14, 16, 6, 27, 25, 4, 16, 17, 28, 27], [25, 9, 14, 16, 6, 27, 25, 4, 16, 17, 28, 27, 19, 4, 16, 29, 28, 27, 19, 26, 33, 16, 29, 27], [25, 9, 14, 16, 6, 27, 25, 4, 16, 17, 28, 27, 19, 4, 16, 29, 28, 27, 19, 26, 33, 16, 29, 27, 19, 12, 14, 16, 10, 27, 25, 24, 16, 17, 27], [25, 9, 14, 16, 6, 27, 25, 4, 16, 17, 28, 27, 19, 4, 16, 29, 28, 27, 19, 26, 33, 16, 29, 27, 19, 12, 14, 16, 10, 27, 25, 24, 16, 17, 27, 36, 12, 22, 14, 16, 1, 27, 35, 9, 14, 16, 18, 27], [25, 9, 14, 16, 6, 27, 25, 4, 16, 17, 28, 27, 19, 4, 16, 29, 28, 27, 19, 26, 33, 16, 29, 27, 19, 12, 14, 16, 10, 27, 25, 24, 16, 17, 27, 36, 12, 22, 14, 16, 1, 27, 35, 9, 14, 16, 18, 27, 36, 12, 22, 14, 16, 23, 27, 25, 9, 14, 16, 10, 27], [19, 2, 14, 16, 6, 27, 19, 5, 14, 16, 3, 27], [19, 2, 14, 16, 6, 27, 19, 5, 14, 16, 3, 27, 19, 9, 14, 16, 1, 27, 35, 12, 22, 14, 16, 23, 27], [19, 2, 14, 16, 6, 27, 19, 5, 14, 16, 3, 27, 19, 9, 14, 16, 1, 27, 35, 12, 22, 14, 16, 23, 27, 35, 5, 14, 16, 18, 27, 25, 4, 16, 20, 28, 27], [19, 2, 14, 16, 6, 27, 19, 5, 14, 16, 3, 27, 19, 9, 14, 16, 1, 27, 35, 12, 22, 14, 16, 23, 27, 35, 5, 14, 16, 18, 27, 25, 4, 16, 20, 28, 27, 25, 26, 33, 16, 20, 27, 19, 2, 14, 16, 3, 27], [19, 2, 14, 16, 6, 27, 19, 5, 14, 16, 3, 27, 19, 9, 14, 16, 1, 27, 35, 12, 22, 14, 16, 23, 27, 35, 5, 14, 16, 18, 27, 25, 4, 16, 20, 28, 27, 25, 26, 33, 16, 20, 27, 19, 2, 14, 16, 3, 27, 19, 4, 16, 17, 28, 27, 19, 8, 11, 16, 29, 28, 27], [19, 9, 14, 16, 1, 27, 35, 5, 14, 16, 6, 27], [19, 9, 14, 16, 1, 27, 35, 5, 14, 16, 6, 27, 35, 12, 14, 16, 18, 27, 35, 9, 14, 16, 1, 27], [19, 9, 14, 16, 1, 27, 35, 5, 14, 16, 6, 27, 35, 12, 14, 16, 18, 27, 35, 9, 14, 16, 1, 27, 19, 12, 22, 14, 16, 23, 27, 19, 12, 22, 14, 16, 6, 27], [19, 9, 14, 16, 1, 27, 35, 5, 14, 16, 6, 27, 35, 12, 14, 16, 18, 27, 35, 9, 14, 16, 1, 27, 19, 12, 22, 14, 16, 23, 27, 19, 12, 22, 14, 16, 6, 27, 35, 5, 14, 16, 10, 27, 36, 2, 14, 16, 1, 27], [19, 9, 14, 16, 1, 27, 35, 5, 14, 16, 6, 27, 35, 12, 14, 16, 18, 27, 35, 9, 14, 16, 1, 27, 19, 12, 22, 14, 16, 23, 27, 19, 12, 22, 14, 16, 6, 27, 35, 5, 14, 16, 10, 27, 36, 2, 14, 16, 1, 27, 25, 9, 14, 16, 10, 27, 25, 2, 14, 16, 1, 27], [35, 9, 14, 16, 3, 27, 36, 9, 14, 16, 1, 27], [35, 9, 14, 16, 3, 27, 36, 9, 14, 16, 1, 27, 25, 2, 14, 16, 23, 27, 25, 12, 22, 14, 16, 18, 27], [35, 9, 14, 16, 3, 27, 36, 9, 14, 16, 1, 27, 25, 2, 14, 16, 23, 27, 25, 12, 22, 14, 16, 18, 27, 25, 9, 14, 16, 6, 27, 36, 8, 11, 16, 20, 28, 27], [35, 9, 14, 16, 3, 27, 36, 9, 14, 16, 1, 27, 25, 2, 14, 16, 23, 27, 25, 12, 22, 14, 16, 18, 27, 25, 9, 14, 16, 6, 27, 36, 8, 11, 16, 20, 28, 27, 35, 5, 14, 16, 18, 27, 35, 12, 14, 16, 1, 27], [35, 9, 14, 16, 3, 27, 36, 9, 14, 16, 1, 27, 25, 2, 14, 16, 23, 27, 25, 12, 22, 14, 16, 18, 27, 25, 9, 14, 16, 6, 27, 36, 8, 11, 16, 20, 28, 27, 35, 5, 14, 16, 18, 27, 35, 12, 14, 16, 1, 27, 35, 2, 14, 16, 18, 27, 19, 5, 14, 16, 3, 27], [35, 5, 14, 16, 10, 27, 35, 5, 14, 16, 18, 27], [35, 5, 14, 16, 10, 27, 35, 5, 14, 16, 18, 27, 19, 12, 14, 16, 18, 27, 36, 12, 14, 16, 10, 27], [35, 5, 14, 16, 10, 27, 35, 5, 14, 16, 18, 27, 19, 12, 14, 16, 18, 27, 36, 12, 14, 16, 10, 27, 19, 2, 14, 16, 3, 27, 35, 12, 14, 16, 10, 27], [35, 5, 14, 16, 10, 27, 35, 5, 14, 16, 18, 27, 19, 12, 14, 16, 18, 27, 36, 12, 14, 16, 10, 27, 19, 2, 14, 16, 3, 27, 35, 12, 14, 16, 10, 27, 36, 5, 14, 16, 1, 27, 36, 9, 14, 16, 3, 27], [35, 5, 14, 16, 10, 27, 35, 5, 14, 16, 18, 27, 19, 12, 14, 16, 18, 27, 36, 12, 14, 16, 10, 27, 19, 2, 14, 16, 3, 27, 35, 12, 14, 16, 10, 27, 36, 5, 14, 16, 1, 27, 36, 9, 14, 16, 3, 27, 35, 2, 14, 16, 23, 27, 36, 12, 14, 16, 1, 27], [19, 9, 14, 16, 1, 27, 25, 9, 14, 16, 10, 27], [19, 9, 14, 16, 1, 27, 25, 9, 14, 16, 10, 27, 35, 5, 14, 16, 10, 27, 36, 12, 14, 16, 18, 27], [19, 9, 14, 16, 1, 27, 25, 9, 14, 16, 10, 27, 35, 5, 14, 16, 10, 27, 36, 12, 14, 16, 18, 27, 35, 5, 14, 16, 1, 27, 19, 9, 14, 16, 10, 27], [19, 9, 14, 16, 1, 27, 25, 9, 14, 16, 10, 27, 35, 5, 14, 16, 10, 27, 36, 12, 14, 16, 18, 27, 35, 5, 14, 16, 1, 27, 19, 9, 14, 16, 10, 27, 36, 4, 16, 17, 28, 27, 19, 12, 22, 14, 16, 1, 27], [19, 9, 14, 16, 1, 27, 25, 9, 14, 16, 10, 27, 35, 5, 14, 16, 10, 27, 36, 12, 14, 16, 18, 27, 35, 5, 14, 16, 1, 27, 19, 9, 14, 16, 10, 27, 36, 4, 16, 17, 28, 27, 19, 12, 22, 14, 16, 1, 27, 35, 21, 16, 29, 28, 27, 35, 30, 16, 29, 27], [19, 2, 14, 16, 23, 27, 35, 12, 22, 14, 16, 1, 27], [19, 2, 14, 16, 23, 27, 35, 12, 22, 14, 16, 1, 27, 35, 5, 14, 16, 3, 27, 36, 4, 16, 29, 28, 27], [19, 2, 14, 16, 23, 27, 35, 12, 22, 14, 16, 1, 27, 35, 5, 14, 16, 3, 27, 36, 4, 16, 29, 28, 27, 35, 12, 22, 14, 16, 6, 27, 36, 2, 14, 16, 18, 27], [19, 2, 14, 16, 23, 27, 35, 12, 22, 14, 16, 1, 27, 35, 5, 14, 16, 3, 27, 36, 4, 16, 29, 28, 27, 35, 12, 22, 14, 16, 6, 27, 36, 2, 14, 16, 18, 27, 19, 2, 14, 16, 6, 27, 25, 12, 14, 16, 18, 27], [19, 2, 14, 16, 23, 27, 35, 12, 22, 14, 16, 1, 27, 35, 5, 14, 16, 3, 27, 36, 4, 16, 29, 28, 27, 35, 12, 22, 14, 16, 6, 27, 36, 2, 14, 16, 18, 27, 19, 2, 14, 16, 6, 27, 25, 12, 14, 16, 18, 27, 19, 12, 22, 14, 16, 18, 27, 35, 2, 14, 16, 23, 27], [25, 9, 14, 16, 18, 27, 36, 9, 14, 16, 10, 27], [25, 9, 14, 16, 18, 27, 36, 9, 14, 16, 10, 27, 35, 5, 14, 16, 10, 27, 19, 12, 14, 16, 10, 27], [25, 9, 14, 16, 18, 27, 36, 9, 14, 16, 10, 27, 35, 5, 14, 16, 10, 27, 19, 12, 14, 16, 10, 27, 35, 9, 14, 16, 3, 27, 25, 21, 16, 17, 28, 27], [25, 9, 14, 16, 18, 27, 36, 9, 14, 16, 10, 27, 35, 5, 14, 16, 10, 27, 19, 12, 14, 16, 10, 27, 35, 9, 14, 16, 3, 27, 25, 21, 16, 17, 28, 27, 19, 12, 14, 16, 18, 27, 25, 30, 16, 17, 27], [25, 9, 14, 16, 18, 27, 36, 9, 14, 16, 10, 27, 35, 5, 14, 16, 10, 27, 19, 12, 14, 16, 10, 27, 35, 9, 14, 16, 3, 27, 25, 21, 16, 17, 28, 27, 19, 12, 14, 16, 18, 27, 25, 30, 16, 17, 27, 19, 5, 14, 16, 10, 27, 35, 12, 22, 14, 16, 6, 27], [25, 4, 16, 29, 28, 27, 35, 12, 22, 14, 16, 1, 27], [25, 4, 16, 29, 28, 27, 35, 12, 22, 14, 16, 1, 27, 19, 4, 16, 17, 28, 27, 25, 5, 14, 16, 18, 27], [25, 4, 16, 29, 28, 27, 35, 12, 22, 14, 16, 1, 27, 19, 4, 16, 17, 28, 27, 25, 5, 14, 16, 18, 27, 25, 32, 16, 20, 28, 27, 25, 30, 16, 20, 27], [25, 4, 16, 29, 28, 27, 35, 12, 22, 14, 16, 1, 27, 19, 4, 16, 17, 28, 27, 25, 5, 14, 16, 18, 27, 25, 32, 16, 20, 28, 27, 25, 30, 16, 20, 27, 35, 12, 22, 14, 16, 23, 27, 36, 12, 14, 16, 6, 27], [25, 4, 16, 29, 28, 27, 35, 12, 22, 14, 16, 1, 27, 19, 4, 16, 17, 28, 27, 25, 5, 14, 16, 18, 27, 25, 32, 16, 20, 28, 27, 25, 30, 16, 20, 27, 35, 12, 22, 14, 16, 23, 27, 36, 12, 14, 16, 6, 27, 35, 5, 14, 16, 3, 27, 36, 5, 14, 16, 1, 27], [35, 9, 14, 16, 1, 27, 36, 12, 22, 14, 16, 10, 27], [35, 9, 14, 16, 1, 27, 36, 12, 22, 14, 16, 10, 27, 36, 2, 14, 16, 23, 27, 36, 21, 16, 17, 28, 27], [35, 9, 14, 16, 1, 27, 36, 12, 22, 14, 16, 10, 27, 36, 2, 14, 16, 23, 27, 36, 21, 16, 17, 28, 27, 25, 12, 14, 16, 6, 27, 36, 30, 16, 17, 27], [35, 9, 14, 16, 1, 27, 36, 12, 22, 14, 16, 10, 27, 36, 2, 14, 16, 23, 27, 36, 21, 16, 17, 28, 27, 25, 12, 14, 16, 6, 27, 36, 30, 16, 17, 27, 35, 12, 22, 14, 16, 6, 27, 35, 2, 14, 16, 1, 27], [35, 9, 14, 16, 1, 27, 36, 12, 22, 14, 16, 10, 27, 36, 2, 14, 16, 23, 27, 36, 21, 16, 17, 28, 27, 25, 12, 14, 16, 6, 27, 36, 30, 16, 17, 27, 35, 12, 22, 14, 16, 6, 27, 35, 2, 14, 16, 1, 27, 19, 12, 14, 16, 18, 27, 36, 32, 16, 17, 28, 27], [35, 32, 16, 29, 28, 27, 36, 12, 22, 14, 16, 1, 27], [35, 32, 16, 29, 28, 27, 36, 12, 22, 14, 16, 1, 27, 25, 32, 16, 17, 28, 27, 35, 24, 16, 29, 27], [35, 32, 16, 29, 28, 27, 36, 12, 22, 14, 16, 1, 27, 25, 32, 16, 17, 28, 27, 35, 24, 16, 29, 27, 25, 26, 33, 16, 17, 27, 35, 32, 16, 29, 28, 27], [35, 32, 16, 29, 28, 27, 36, 12, 22, 14, 16, 1, 27, 25, 32, 16, 17, 28, 27, 35, 24, 16, 29, 27, 25, 26, 33, 16, 17, 27, 35, 32, 16, 29, 28, 27, 36, 12, 14, 16, 6, 27, 25, 12, 22, 14, 16, 3, 27], [35, 32, 16, 29, 28, 27, 36, 12, 22, 14, 16, 1, 27, 25, 32, 16, 17, 28, 27, 35, 24, 16, 29, 27, 25, 26, 33, 16, 17, 27, 35, 32, 16, 29, 28, 27, 36, 12, 14, 16, 6, 27, 25, 12, 22, 14, 16, 3, 27, 25, 2, 14, 16, 18, 27, 19, 12, 14, 16, 6, 27], [36, 12, 14, 16, 3, 27, 19, 9, 14, 16, 18, 27], [36, 12, 14, 16, 3, 27, 19, 9, 14, 16, 18, 27, 25, 2, 14, 16, 6, 27, 25, 2, 14, 16, 10, 27], [36, 12, 14, 16, 3, 27, 19, 9, 14, 16, 18, 27, 25, 2, 14, 16, 6, 27, 25, 2, 14, 16, 10, 27, 19, 8, 11, 16, 17, 28, 27, 19, 8, 11, 16, 20, 28, 27], [36, 12, 14, 16, 3, 27, 19, 9, 14, 16, 18, 27, 25, 2, 14, 16, 6, 27, 25, 2, 14, 16, 10, 27, 19, 8, 11, 16, 17, 28, 27, 19, 8, 11, 16, 20, 28, 27, 19, 24, 16, 20, 27, 25, 5, 14, 16, 1, 27], [36, 12, 14, 16, 3, 27, 19, 9, 14, 16, 18, 27, 25, 2, 14, 16, 6, 27, 25, 2, 14, 16, 10, 27, 19, 8, 11, 16, 17, 28, 27, 19, 8, 11, 16, 20, 28, 27, 19, 24, 16, 20, 27, 25, 5, 14, 16, 1, 27, 19, 31, 16, 17, 27, 25, 9, 14, 16, 6, 27], [19, 12, 22, 14, 16, 6, 27, 35, 32, 16, 17, 28, 27], [19, 12, 22, 14, 16, 6, 27, 35, 32, 16, 17, 28, 27, 35, 26, 33, 16, 17, 27, 35, 21, 16, 17, 28, 27], [19, 12, 22, 14, 16, 6, 27, 35, 32, 16, 17, 28, 27, 35, 26, 33, 16, 17, 27, 35, 21, 16, 17, 28, 27, 35, 26, 33, 16, 17, 28, 27, 19, 9, 14, 16, 1, 27], [19, 12, 22, 14, 16, 6, 27, 35, 32, 16, 17, 28, 27, 35, 26, 33, 16, 17, 27, 35, 21, 16, 17, 28, 27, 35, 26, 33, 16, 17, 28, 27, 19, 9, 14, 16, 1, 27, 19, 2, 14, 16, 23, 27, 25, 12, 22, 14, 16, 3, 27], [19, 12, 22, 14, 16, 6, 27, 35, 32, 16, 17, 28, 27, 35, 26, 33, 16, 17, 27, 35, 21, 16, 17, 28, 27, 35, 26, 33, 16, 17, 28, 27, 19, 9, 14, 16, 1, 27, 19, 2, 14, 16, 23, 27, 25, 12, 22, 14, 16, 3, 27, 36, 12, 14, 16, 18, 27, 19, 21, 16, 29, 28, 27], [35, 4, 16, 17, 28, 27, 19, 32, 16, 29, 28, 27, 25, 12, 14, 16, 6, 27, 35, 9, 14, 16, 6, 27], [35, 4, 16, 17, 28, 27, 19, 32, 16, 29, 28, 27, 25, 12, 14, 16, 6, 27, 35, 9, 14, 16, 6, 27, 36, 8, 11, 16, 20, 28, 27, 36, 26, 33, 16, 20, 28, 27], [35, 4, 16, 17, 28, 27, 19, 32, 16, 29, 28, 27, 25, 12, 14, 16, 6, 27, 35, 9, 14, 16, 6, 27, 36, 8, 11, 16, 20, 28, 27, 36, 26, 33, 16, 20, 28, 27, 25, 12, 14, 16, 1, 27, 35, 9, 14, 16, 23, 27], [35, 4, 16, 17, 28, 27, 19, 32, 16, 29, 28, 27, 25, 12, 14, 16, 6, 27, 35, 9, 14, 16, 6, 27, 36, 8, 11, 16, 20, 28, 27, 36, 26, 33, 16, 20, 28, 27, 25, 12, 14, 16, 1, 27, 35, 9, 14, 16, 23, 27, 35, 32, 16, 20, 28, 27, 19, 12, 14, 16, 6, 27], [35, 4, 16, 17, 28, 27, 19, 32, 16, 29, 28, 27, 25, 12, 14, 16, 6, 27, 35, 9, 14, 16, 6, 27, 36, 8, 11, 16, 20, 28, 27, 36, 26, 33, 16, 20, 28, 27, 25, 12, 14, 16, 1, 27, 35, 9, 14, 16, 23, 27, 35, 32, 16, 20, 28, 27, 19, 12, 14, 16, 6, 27, 19, 5, 14, 16, 18, 27, 35, 31, 16, 20, 27], [19, 2, 14, 16, 3, 27, 36, 9, 14, 16, 23, 27], [19, 2, 14, 16, 3, 27, 36, 9, 14, 16, 23, 27, 36, 2, 14, 16, 10, 27, 36, 2, 14, 16, 3, 27], [19, 2, 14, 16, 3, 27, 36, 9, 14, 16, 23, 27, 36, 2, 14, 16, 10, 27, 36, 2, 14, 16, 3, 27, 25, 12, 22, 14, 16, 1, 27, 25, 9, 14, 16, 23, 27], [19, 2, 14, 16, 3, 27, 36, 9, 14, 16, 23, 27, 36, 2, 14, 16, 10, 27, 36, 2, 14, 16, 3, 27, 25, 12, 22, 14, 16, 1, 27, 25, 9, 14, 16, 23, 27, 19, 5, 14, 16, 23, 27, 25, 12, 14, 16, 18, 27], [19, 2, 14, 16, 3, 27, 36, 9, 14, 16, 23, 27, 36, 2, 14, 16, 10, 27, 36, 2, 14, 16, 3, 27, 25, 12, 22, 14, 16, 1, 27, 25, 9, 14, 16, 23, 27, 19, 5, 14, 16, 23, 27, 25, 12, 14, 16, 18, 27, 25, 5, 14, 16, 1, 27, 36, 12, 22, 14, 16, 23, 27], [25, 2, 14, 16, 23, 27, 35, 21, 16, 20, 28, 27], [25, 2, 14, 16, 23, 27, 35, 21, 16, 20, 28, 27, 19, 2, 14, 16, 1, 27, 35, 26, 33, 16, 20, 27], [25, 2, 14, 16, 23, 27, 35, 21, 16, 20, 28, 27, 19, 2, 14, 16, 1, 27, 35, 26, 33, 16, 20, 27, 36, 12, 14, 16, 18, 27, 35, 8, 11, 16, 20, 28, 27], [25, 2, 14, 16, 23, 27, 35, 21, 16, 20, 28, 27, 19, 2, 14, 16, 1, 27, 35, 26, 33, 16, 20, 27, 36, 12, 14, 16, 18, 27, 35, 8, 11, 16, 20, 28, 27, 25, 12, 22, 14, 16, 1, 27, 19, 12, 22, 14, 16, 10, 27], [25, 2, 14, 16, 23, 27, 35, 21, 16, 20, 28, 27, 19, 2, 14, 16, 1, 27, 35, 26, 33, 16, 20, 27, 36, 12, 14, 16, 18, 27, 35, 8, 11, 16, 20, 28, 27, 25, 12, 22, 14, 16, 1, 27, 19, 12, 22, 14, 16, 10, 27, 36, 2, 14, 16, 1, 27, 25, 12, 14, 16, 3, 27], [35, 2, 14, 16, 3, 27, 19, 12, 14, 16, 23, 27], [35, 2, 14, 16, 3, 27, 19, 12, 14, 16, 23, 27, 25, 12, 14, 16, 6, 27, 36, 2, 14, 16, 6, 27], [35, 2, 14, 16, 3, 27, 19, 12, 14, 16, 23, 27, 25, 12, 14, 16, 6, 27, 36, 2, 14, 16, 6, 27, 35, 5, 14, 16, 10, 27, 25, 9, 14, 16, 18, 27], [35, 2, 14, 16, 3, 27, 19, 12, 14, 16, 23, 27, 25, 12, 14, 16, 6, 27, 36, 2, 14, 16, 6, 27, 35, 5, 14, 16, 10, 27, 25, 9, 14, 16, 18, 27, 19, 12, 14, 16, 1, 27, 19, 12, 14, 16, 18, 27], [35, 2, 14, 16, 3, 27, 19, 12, 14, 16, 23, 27, 25, 12, 14, 16, 6, 27, 36, 2, 14, 16, 6, 27, 35, 5, 14, 16, 10, 27, 25, 9, 14, 16, 18, 27, 19, 12, 14, 16, 1, 27, 19, 12, 14, 16, 18, 27, 35, 4, 16, 17, 28, 27, 19, 2, 14, 16, 1, 27], [36, 9, 14, 16, 6, 27, 25, 4, 16, 17, 28, 27], [36, 9, 14, 16, 6, 27, 25, 4, 16, 17, 28, 27, 25, 31, 16, 17, 27, 19, 2, 14, 16, 23, 27], [36, 9, 14, 16, 6, 27, 25, 4, 16, 17, 28, 27, 25, 31, 16, 17, 27, 19, 2, 14, 16, 23, 27, 19, 21, 16, 20, 28, 27, 19, 30, 16, 20, 27], [36, 9, 14, 16, 6, 27, 25, 4, 16, 17, 28, 27, 25, 31, 16, 17, 27, 19, 2, 14, 16, 23, 27, 19, 21, 16, 20, 28, 27, 19, 30, 16, 20, 27, 36, 32, 16, 17, 28, 27, 19, 8, 11, 16, 20, 28, 27], [36, 9, 14, 16, 6, 27, 25, 4, 16, 17, 28, 27, 25, 31, 16, 17, 27, 19, 2, 14, 16, 23, 27, 19, 21, 16, 20, 28, 27, 19, 30, 16, 20, 27, 36, 32, 16, 17, 28, 27, 19, 8, 11, 16, 20, 28, 27, 19, 31, 16, 20, 27, 35, 12, 22, 14, 16, 18, 27], [36, 9, 14, 16, 23, 27, 36, 8, 11, 16, 20, 28, 27], [36, 9, 14, 16, 23, 27, 36, 8, 11, 16, 20, 28, 27, 19, 12, 14, 16, 1, 27, 35, 8, 11, 16, 29, 28, 27], [36, 9, 14, 16, 23, 27, 36, 8, 11, 16, 20, 28, 27, 19, 12, 14, 16, 1, 27, 35, 8, 11, 16, 29, 28, 27, 19, 5, 14, 16, 18, 27, 25, 5, 14, 16, 10, 27], [36, 9, 14, 16, 23, 27, 36, 8, 11, 16, 20, 28, 27, 19, 12, 14, 16, 1, 27, 35, 8, 11, 16, 29, 28, 27, 19, 5, 14, 16, 18, 27, 25, 5, 14, 16, 10, 27, 36, 31, 16, 20, 27, 25, 5, 14, 16, 3, 27], [36, 9, 14, 16, 23, 27, 36, 8, 11, 16, 20, 28, 27, 19, 12, 14, 16, 1, 27, 35, 8, 11, 16, 29, 28, 27, 19, 5, 14, 16, 18, 27, 25, 5, 14, 16, 10, 27, 36, 31, 16, 20, 27, 25, 5, 14, 16, 3, 27, 36, 21, 16, 20, 28, 27, 35, 24, 16, 29, 27], [36, 12, 14, 16, 1, 27, 36, 32, 16, 20, 28, 27], [36, 12, 14, 16, 1, 27, 36, 32, 16, 20, 28, 27, 35, 12, 14, 16, 23, 27, 36, 31, 16, 20, 27], [36, 12, 14, 16, 1, 27, 36, 32, 16, 20, 28, 27, 35, 12, 14, 16, 23, 27, 36, 31, 16, 20, 27, 19, 12, 22, 14, 16, 10, 27, 36, 8, 11, 16, 20, 28, 27], [36, 12, 14, 16, 1, 27, 36, 32, 16, 20, 28, 27, 35, 12, 14, 16, 23, 27, 36, 31, 16, 20, 27, 19, 12, 22, 14, 16, 10, 27, 36, 8, 11, 16, 20, 28, 27, 19, 5, 14, 16, 18, 27, 19, 9, 14, 16, 10, 27], [36, 12, 14, 16, 1, 27, 36, 32, 16, 20, 28, 27, 35, 12, 14, 16, 23, 27, 36, 31, 16, 20, 27, 19, 12, 22, 14, 16, 10, 27, 36, 8, 11, 16, 20, 28, 27, 19, 5, 14, 16, 18, 27, 19, 9, 14, 16, 10, 27, 25, 12, 22, 14, 16, 3, 27, 36, 12, 22, 14, 16, 23, 27], [19, 5, 14, 16, 23, 27, 35, 9, 14, 16, 6, 27], [19, 5, 14, 16, 23, 27, 35, 9, 14, 16, 6, 27, 25, 8, 11, 16, 17, 28, 27, 36, 2, 14, 16, 3, 27], [19, 5, 14, 16, 23, 27, 35, 9, 14, 16, 6, 27, 25, 8, 11, 16, 17, 28, 27, 36, 2, 14, 16, 3, 27, 35, 12, 14, 16, 18, 27, 35, 5, 14, 16, 23, 27], [19, 5, 14, 16, 23, 27, 35, 9, 14, 16, 6, 27, 25, 8, 11, 16, 17, 28, 27, 36, 2, 14, 16, 3, 27, 35, 12, 14, 16, 18, 27, 35, 5, 14, 16, 23, 27, 19, 12, 14, 16, 10, 27, 36, 5, 14, 16, 10, 27], [19, 5, 14, 16, 23, 27, 35, 9, 14, 16, 6, 27, 25, 8, 11, 16, 17, 28, 27, 36, 2, 14, 16, 3, 27, 35, 12, 14, 16, 18, 27, 35, 5, 14, 16, 23, 27, 19, 12, 14, 16, 10, 27, 36, 5, 14, 16, 10, 27, 36, 32, 16, 29, 28, 27, 35, 9, 14, 16, 1, 27], [19, 32, 16, 29, 28, 27, 25, 8, 11, 16, 17, 28, 27, 35, 2, 14, 16, 1, 27, 25, 26, 33, 16, 17, 28, 27], [19, 32, 16, 29, 28, 27, 25, 8, 11, 16, 17, 28, 27, 35, 2, 14, 16, 1, 27, 25, 26, 33, 16, 17, 28, 27, 25, 21, 16, 17, 28, 27, 36, 12, 14, 16, 6, 27], [19, 32, 16, 29, 28, 27, 25, 8, 11, 16, 17, 28, 27, 35, 2, 14, 16, 1, 27, 25, 26, 33, 16, 17, 28, 27, 25, 21, 16, 17, 28, 27, 36, 12, 14, 16, 6, 27, 19, 12, 14, 16, 18, 27, 25, 2, 14, 16, 18, 27], [19, 32, 16, 29, 28, 27, 25, 8, 11, 16, 17, 28, 27, 35, 2, 14, 16, 1, 27, 25, 26, 33, 16, 17, 28, 27, 25, 21, 16, 17, 28, 27, 36, 12, 14, 16, 6, 27, 19, 12, 14, 16, 18, 27, 25, 2, 14, 16, 18, 27, 35, 9, 14, 16, 18, 27, 19, 24, 16, 29, 27], [19, 32, 16, 29, 28, 27, 25, 8, 11, 16, 17, 28, 27, 35, 2, 14, 16, 1, 27, 25, 26, 33, 16, 17, 28, 27, 25, 21, 16, 17, 28, 27, 36, 12, 14, 16, 6, 27, 19, 12, 14, 16, 18, 27, 25, 2, 14, 16, 18, 27, 35, 9, 14, 16, 18, 27, 19, 24, 16, 29, 27, 25, 32, 16, 29, 28, 27, 36, 12, 22, 14, 16, 3, 27], [36, 2, 14, 16, 18, 27, 19, 12, 14, 16, 6, 27], [36, 2, 14, 16, 18, 27, 19, 12, 14, 16, 6, 27, 36, 12, 14, 16, 6, 27, 19, 2, 14, 16, 1, 27], [36, 2, 14, 16, 18, 27, 19, 12, 14, 16, 6, 27, 36, 12, 14, 16, 6, 27, 19, 2, 14, 16, 1, 27, 35, 8, 11, 16, 20, 28, 27, 25, 9, 14, 16, 23, 27], [36, 2, 14, 16, 18, 27, 19, 12, 14, 16, 6, 27, 36, 12, 14, 16, 6, 27, 19, 2, 14, 16, 1, 27, 35, 8, 11, 16, 20, 28, 27, 25, 9, 14, 16, 23, 27, 25, 9, 14, 16, 10, 27, 35, 24, 16, 20, 27], [36, 2, 14, 16, 18, 27, 19, 12, 14, 16, 6, 27, 36, 12, 14, 16, 6, 27, 19, 2, 14, 16, 1, 27, 35, 8, 11, 16, 20, 28, 27, 25, 9, 14, 16, 23, 27, 25, 9, 14, 16, 10, 27, 35, 24, 16, 20, 27, 35, 2, 14, 16, 18, 27, 25, 5, 14, 16, 18, 27], [35, 12, 14, 16, 1, 27, 19, 12, 22, 14, 16, 3, 27], [35, 12, 14, 16, 1, 27, 19, 12, 22, 14, 16, 3, 27, 36, 12, 14, 16, 10, 27, 25, 2, 14, 16, 6, 27], [35, 12, 14, 16, 1, 27, 19, 12, 22, 14, 16, 3, 27, 36, 12, 14, 16, 10, 27, 25, 2, 14, 16, 6, 27, 19, 2, 14, 16, 10, 27, 25, 12, 22, 14, 16, 3, 27], [35, 12, 14, 16, 1, 27, 19, 12, 22, 14, 16, 3, 27, 36, 12, 14, 16, 10, 27, 25, 2, 14, 16, 6, 27, 19, 2, 14, 16, 10, 27, 25, 12, 22, 14, 16, 3, 27, 25, 2, 14, 16, 23, 27, 25, 4, 16, 17, 28, 27], [35, 12, 14, 16, 1, 27, 19, 12, 22, 14, 16, 3, 27, 36, 12, 14, 16, 10, 27, 25, 2, 14, 16, 6, 27, 19, 2, 14, 16, 10, 27, 25, 12, 22, 14, 16, 3, 27, 25, 2, 14, 16, 23, 27, 25, 4, 16, 17, 28, 27, 25, 26, 33, 16, 17, 27, 25, 32, 16, 17, 28, 27], [25, 2, 14, 16, 10, 27, 19, 32, 16, 29, 28, 27], [25, 2, 14, 16, 10, 27, 19, 32, 16, 29, 28, 27, 19, 2, 14, 16, 3, 27, 25, 12, 14, 16, 23, 27], [25, 2, 14, 16, 10, 27, 19, 32, 16, 29, 28, 27, 19, 2, 14, 16, 3, 27, 25, 12, 14, 16, 23, 27, 35, 12, 14, 16, 18, 27, 19, 8, 11, 16, 20, 28, 27], [25, 2, 14, 16, 10, 27, 19, 32, 16, 29, 28, 27, 19, 2, 14, 16, 3, 27, 25, 12, 14, 16, 23, 27, 35, 12, 14, 16, 18, 27, 19, 8, 11, 16, 20, 28, 27, 25, 12, 22, 14, 16, 3, 27, 35, 5, 14, 16, 10, 27], [25, 2, 14, 16, 10, 27, 19, 32, 16, 29, 28, 27, 19, 2, 14, 16, 3, 27, 25, 12, 14, 16, 23, 27, 35, 12, 14, 16, 18, 27, 19, 8, 11, 16, 20, 28, 27, 25, 12, 22, 14, 16, 3, 27, 35, 5, 14, 16, 10, 27, 19, 30, 16, 20, 27, 19, 8, 11, 16, 20, 28, 27], [36, 8, 11, 16, 17, 28, 27, 36, 30, 16, 17, 27, 35, 4, 16, 17, 28, 27, 19, 12, 14, 16, 23, 27], [36, 8, 11, 16, 17, 28, 27, 36, 30, 16, 17, 27, 35, 4, 16, 17, 28, 27, 19, 12, 14, 16, 23, 27, 19, 5, 14, 16, 3, 27, 36, 5, 14, 16, 23, 27], [36, 8, 11, 16, 17, 28, 27, 36, 30, 16, 17, 27, 35, 4, 16, 17, 28, 27, 19, 12, 14, 16, 23, 27, 19, 5, 14, 16, 3, 27, 36, 5, 14, 16, 23, 27, 35, 5, 14, 16, 1, 27, 36, 12, 14, 16, 18, 27], [36, 8, 11, 16, 17, 28, 27, 36, 30, 16, 17, 27, 35, 4, 16, 17, 28, 27, 19, 12, 14, 16, 23, 27, 19, 5, 14, 16, 3, 27, 36, 5, 14, 16, 23, 27, 35, 5, 14, 16, 1, 27, 36, 12, 14, 16, 18, 27, 35, 21, 16, 29, 28, 27, 35, 24, 16, 29, 27], [36, 8, 11, 16, 17, 28, 27, 36, 30, 16, 17, 27, 35, 4, 16, 17, 28, 27, 19, 12, 14, 16, 23, 27, 19, 5, 14, 16, 3, 27, 36, 5, 14, 16, 23, 27, 35, 5, 14, 16, 1, 27, 36, 12, 14, 16, 18, 27, 35, 21, 16, 29, 28, 27, 35, 24, 16, 29, 27, 35, 4, 16, 29, 28, 27, 35, 24, 16, 17, 28, 27], [36, 21, 16, 29, 28, 27, 25, 12, 22, 14, 16, 18, 27], [36, 21, 16, 29, 28, 27, 25, 12, 22, 14, 16, 18, 27, 19, 2, 14, 16, 18, 27, 35, 9, 14, 16, 6, 27], [36, 21, 16, 29, 28, 27, 25, 12, 22, 14, 16, 18, 27, 19, 2, 14, 16, 18, 27, 35, 9, 14, 16, 6, 27, 36, 9, 14, 16, 18, 27, 36, 12, 22, 14, 16, 1, 27], [36, 21, 16, 29, 28, 27, 25, 12, 22, 14, 16, 18, 27, 19, 2, 14, 16, 18, 27, 35, 9, 14, 16, 6, 27, 36, 9, 14, 16, 18, 27, 36, 12, 22, 14, 16, 1, 27, 35, 2, 14, 16, 18, 27, 36, 8, 11, 16, 20, 28, 27], [36, 21, 16, 29, 28, 27, 25, 12, 22, 14, 16, 18, 27, 19, 2, 14, 16, 18, 27, 35, 9, 14, 16, 6, 27, 36, 9, 14, 16, 18, 27, 36, 12, 22, 14, 16, 1, 27, 35, 2, 14, 16, 18, 27, 36, 8, 11, 16, 20, 28, 27, 19, 2, 14, 16, 10, 27, 36, 26, 33, 16, 29, 28, 27], [36, 8, 11, 16, 20, 28, 27, 36, 30, 16, 20, 27, 19, 32, 16, 20, 28, 27, 25, 9, 14, 16, 3, 27], [36, 8, 11, 16, 20, 28, 27, 36, 30, 16, 20, 27, 19, 32, 16, 20, 28, 27, 25, 9, 14, 16, 3, 27, 36, 2, 14, 16, 1, 27, 36, 12, 14, 16, 23, 27], [36, 8, 11, 16, 20, 28, 27, 36, 30, 16, 20, 27, 19, 32, 16, 20, 28, 27, 25, 9, 14, 16, 3, 27, 36, 2, 14, 16, 1, 27, 36, 12, 14, 16, 23, 27, 36, 12, 14, 16, 3, 27, 36, 5, 14, 16, 1, 27], [36, 8, 11, 16, 20, 28, 27, 36, 30, 16, 20, 27, 19, 32, 16, 20, 28, 27, 25, 9, 14, 16, 3, 27, 36, 2, 14, 16, 1, 27, 36, 12, 14, 16, 23, 27, 36, 12, 14, 16, 3, 27, 36, 5, 14, 16, 1, 27, 19, 31, 16, 20, 27, 36, 5, 14, 16, 6, 27], [36, 8, 11, 16, 20, 28, 27, 36, 30, 16, 20, 27, 19, 32, 16, 20, 28, 27, 25, 9, 14, 16, 3, 27, 36, 2, 14, 16, 1, 27, 36, 12, 14, 16, 23, 27, 36, 12, 14, 16, 3, 27, 36, 5, 14, 16, 1, 27, 19, 31, 16, 20, 27, 36, 5, 14, 16, 6, 27, 19, 9, 14, 16, 23, 27, 36, 21, 16, 29, 28, 27], [35, 2, 14, 16, 1, 27, 25, 2, 14, 16, 3, 27], [35, 2, 14, 16, 1, 27, 25, 2, 14, 16, 3, 27, 25, 2, 14, 16, 1, 27, 25, 12, 14, 16, 10, 27], [35, 2, 14, 16, 1, 27, 25, 2, 14, 16, 3, 27, 25, 2, 14, 16, 1, 27, 25, 12, 14, 16, 10, 27, 36, 2, 14, 16, 18, 27, 36, 5, 14, 16, 1, 27], [35, 2, 14, 16, 1, 27, 25, 2, 14, 16, 3, 27, 25, 2, 14, 16, 1, 27, 25, 12, 14, 16, 10, 27, 36, 2, 14, 16, 18, 27, 36, 5, 14, 16, 1, 27, 35, 12, 22, 14, 16, 18, 27, 25, 2, 14, 16, 23, 27], [35, 2, 14, 16, 1, 27, 25, 2, 14, 16, 3, 27, 25, 2, 14, 16, 1, 27, 25, 12, 14, 16, 10, 27, 36, 2, 14, 16, 18, 27, 36, 5, 14, 16, 1, 27, 35, 12, 22, 14, 16, 18, 27, 25, 2, 14, 16, 23, 27, 19, 5, 14, 16, 23, 27, 25, 8, 11, 16, 29, 28, 27], [35, 8, 11, 16, 20, 28, 27, 35, 24, 16, 20, 27, 19, 4, 16, 17, 28, 27, 19, 31, 16, 17, 27, 35, 32, 16, 20, 28, 27, 36, 8, 11, 16, 29, 28, 27, 35, 4, 16, 17, 28, 27, 35, 30, 16, 20, 28, 27, 25, 21, 16, 20, 28, 27, 25, 30, 16, 20, 28, 27, 25, 4, 16, 20, 28, 27, 36, 24, 16, 29, 27, 36, 8, 11, 16, 29, 28, 27, 35, 31, 16, 17, 27, 35, 21, 16, 17, 28, 27, 25, 31, 16, 20, 27, 19, 5, 14, 16, 6, 27, 35, 12, 22, 14, 16, 10, 27], [35, 8, 11, 16, 20, 28, 27, 35, 24, 16, 20, 27, 19, 4, 16, 17, 28, 27, 19, 31, 16, 17, 27, 35, 32, 16, 20, 28, 27, 36, 8, 11, 16, 29, 28, 27, 35, 4, 16, 17, 28, 27, 35, 30, 16, 20, 28, 27, 25, 21, 16, 20, 28, 27, 25, 30, 16, 20, 28, 27, 25, 4, 16, 20, 28, 27, 36, 24, 16, 29, 27, 36, 8, 11, 16, 29, 28, 27, 35, 31, 16, 17, 27, 35, 21, 16, 17, 28, 27, 25, 31, 16, 20, 27, 19, 5, 14, 16, 6, 27, 35, 12, 22, 14, 16, 10, 27, 19, 12, 14, 16, 1, 27, 35, 31, 16, 17, 28, 27], [35, 8, 11, 16, 20, 28, 27, 35, 24, 16, 20, 27, 19, 4, 16, 17, 28, 27, 19, 31, 16, 17, 27, 35, 32, 16, 20, 28, 27, 36, 8, 11, 16, 29, 28, 27, 35, 4, 16, 17, 28, 27, 35, 30, 16, 20, 28, 27, 25, 21, 16, 20, 28, 27, 25, 30, 16, 20, 28, 27, 25, 4, 16, 20, 28, 27, 36, 24, 16, 29, 27, 36, 8, 11, 16, 29, 28, 27, 35, 31, 16, 17, 27, 35, 21, 16, 17, 28, 27, 25, 31, 16, 20, 27, 19, 5, 14, 16, 6, 27, 35, 12, 22, 14, 16, 10, 27, 19, 12, 14, 16, 1, 27, 35, 31, 16, 17, 28, 27, 35, 12, 22, 14, 16, 1, 27, 36, 30, 16, 29, 27], [35, 8, 11, 16, 20, 28, 27, 35, 24, 16, 20, 27, 19, 4, 16, 17, 28, 27, 19, 31, 16, 17, 27, 35, 32, 16, 20, 28, 27, 36, 8, 11, 16, 29, 28, 27, 35, 4, 16, 17, 28, 27, 35, 30, 16, 20, 28, 27, 25, 21, 16, 20, 28, 27, 25, 30, 16, 20, 28, 27, 25, 4, 16, 20, 28, 27, 36, 24, 16, 29, 27, 36, 8, 11, 16, 29, 28, 27, 35, 31, 16, 17, 27, 35, 21, 16, 17, 28, 27, 25, 31, 16, 20, 27, 19, 5, 14, 16, 6, 27, 35, 12, 22, 14, 16, 10, 27, 19, 12, 14, 16, 1, 27, 35, 31, 16, 17, 28, 27, 35, 12, 22, 14, 16, 1, 27, 36, 30, 16, 29, 27, 36, 4, 16, 29, 28, 27, 25, 9, 14, 16, 3, 27], [35, 8, 11, 16, 20, 28, 27, 35, 24, 16, 20, 27, 19, 4, 16, 17, 28, 27, 19, 31, 16, 17, 27, 35, 32, 16, 20, 28, 27, 36, 8, 11, 16, 29, 28, 27, 35, 4, 16, 17, 28, 27, 35, 30, 16, 20, 28, 27, 25, 21, 16, 20, 28, 27, 25, 30, 16, 20, 28, 27, 25, 4, 16, 20, 28, 27, 36, 24, 16, 29, 27, 36, 8, 11, 16, 29, 28, 27, 35, 31, 16, 17, 27, 35, 21, 16, 17, 28, 27, 25, 31, 16, 20, 27, 19, 5, 14, 16, 6, 27, 35, 12, 22, 14, 16, 10, 27, 19, 12, 14, 16, 1, 27, 35, 31, 16, 17, 28, 27, 35, 12, 22, 14, 16, 1, 27, 36, 30, 16, 29, 27, 36, 4, 16, 29, 28, 27, 25, 9, 14, 16, 3, 27, 36, 21, 16, 17, 28, 27, 25, 12, 22, 14, 16, 1, 27], [19, 12, 14, 16, 6, 27, 19, 32, 16, 17, 28, 27], [19, 12, 14, 16, 6, 27, 19, 32, 16, 17, 28, 27, 36, 12, 22, 14, 16, 6, 27, 19, 12, 22, 14, 16, 23, 27], [19, 12, 14, 16, 6, 27, 19, 32, 16, 17, 28, 27, 36, 12, 22, 14, 16, 6, 27, 19, 12, 22, 14, 16, 23, 27, 35, 5, 14, 16, 18, 27, 25, 2, 14, 16, 10, 27], [19, 12, 14, 16, 6, 27, 19, 32, 16, 17, 28, 27, 36, 12, 22, 14, 16, 6, 27, 19, 12, 22, 14, 16, 23, 27, 35, 5, 14, 16, 18, 27, 25, 2, 14, 16, 10, 27, 19, 12, 14, 16, 18, 27, 35, 9, 14, 16, 23, 27], [19, 12, 14, 16, 6, 27, 19, 32, 16, 17, 28, 27, 36, 12, 22, 14, 16, 6, 27, 19, 12, 22, 14, 16, 23, 27, 35, 5, 14, 16, 18, 27, 25, 2, 14, 16, 10, 27, 19, 12, 14, 16, 18, 27, 35, 9, 14, 16, 23, 27, 25, 32, 16, 20, 28, 27, 35, 9, 14, 16, 3, 27], [19, 9, 14, 16, 3, 27, 25, 9, 14, 16, 3, 27], [19, 9, 14, 16, 3, 27, 25, 9, 14, 16, 3, 27, 35, 9, 14, 16, 6, 27, 35, 2, 14, 16, 10, 27], [19, 9, 14, 16, 3, 27, 25, 9, 14, 16, 3, 27, 35, 9, 14, 16, 6, 27, 35, 2, 14, 16, 10, 27, 25, 21, 16, 20, 28, 27, 35, 9, 14, 16, 23, 27], [19, 9, 14, 16, 3, 27, 25, 9, 14, 16, 3, 27, 35, 9, 14, 16, 6, 27, 35, 2, 14, 16, 10, 27, 25, 21, 16, 20, 28, 27, 35, 9, 14, 16, 23, 27, 25, 8, 11, 16, 17, 28, 27, 25, 12, 14, 16, 10, 27], [19, 9, 14, 16, 3, 27, 25, 9, 14, 16, 3, 27, 35, 9, 14, 16, 6, 27, 35, 2, 14, 16, 10, 27, 25, 21, 16, 20, 28, 27, 35, 9, 14, 16, 23, 27, 25, 8, 11, 16, 17, 28, 27, 25, 12, 14, 16, 10, 27, 35, 5, 14, 16, 3, 27, 25, 24, 16, 17, 28, 27], [35, 21, 16, 20, 28, 27, 36, 5, 14, 16, 6, 27], [35, 21, 16, 20, 28, 27, 36, 5, 14, 16, 6, 27, 19, 12, 14, 16, 3, 27, 35, 31, 16, 20, 27], [35, 21, 16, 20, 28, 27, 36, 5, 14, 16, 6, 27, 19, 12, 14, 16, 3, 27, 35, 31, 16, 20, 27, 19, 5, 14, 16, 10, 27, 36, 2, 14, 16, 3, 27], [35, 21, 16, 20, 28, 27, 36, 5, 14, 16, 6, 27, 19, 12, 14, 16, 3, 27, 35, 31, 16, 20, 27, 19, 5, 14, 16, 10, 27, 36, 2, 14, 16, 3, 27, 19, 4, 16, 17, 28, 27, 25, 9, 14, 16, 3, 27], [35, 21, 16, 20, 28, 27, 36, 5, 14, 16, 6, 27, 19, 12, 14, 16, 3, 27, 35, 31, 16, 20, 27, 19, 5, 14, 16, 10, 27, 36, 2, 14, 16, 3, 27, 19, 4, 16, 17, 28, 27, 25, 9, 14, 16, 3, 27, 35, 32, 16, 29, 28, 27, 35, 24, 16, 29, 27], [19, 5, 14, 16, 18, 27, 25, 21, 16, 17, 28, 27], [19, 5, 14, 16, 18, 27, 25, 21, 16, 17, 28, 27, 19, 9, 14, 16, 3, 27, 19, 9, 14, 16, 23, 27], [19, 5, 14, 16, 18, 27, 25, 21, 16, 17, 28, 27, 19, 9, 14, 16, 3, 27, 19, 9, 14, 16, 23, 27, 25, 4, 16, 20, 28, 27, 25, 2, 14, 16, 1, 27], [19, 5, 14, 16, 18, 27, 25, 21, 16, 17, 28, 27, 19, 9, 14, 16, 3, 27, 19, 9, 14, 16, 23, 27, 25, 4, 16, 20, 28, 27, 25, 2, 14, 16, 1, 27, 35, 5, 14, 16, 6, 27, 36, 9, 14, 16, 1, 27], [19, 5, 14, 16, 18, 27, 25, 21, 16, 17, 28, 27, 19, 9, 14, 16, 3, 27, 19, 9, 14, 16, 23, 27, 25, 4, 16, 20, 28, 27, 25, 2, 14, 16, 1, 27, 35, 5, 14, 16, 6, 27, 36, 9, 14, 16, 1, 27, 19, 12, 22, 14, 16, 18, 27, 25, 12, 22, 14, 16, 6, 27], [25, 12, 22, 14, 16, 23, 27, 19, 5, 14, 16, 10, 27], [25, 12, 22, 14, 16, 23, 27, 19, 5, 14, 16, 10, 27, 25, 12, 22, 14, 16, 6, 27, 25, 4, 16, 20, 28, 27], [25, 12, 22, 14, 16, 23, 27, 19, 5, 14, 16, 10, 27, 25, 12, 22, 14, 16, 6, 27, 25, 4, 16, 20, 28, 27, 19, 32, 16, 29, 28, 27, 19, 12, 14, 16, 1, 27], [25, 12, 22, 14, 16, 23, 27, 19, 5, 14, 16, 10, 27, 25, 12, 22, 14, 16, 6, 27, 25, 4, 16, 20, 28, 27, 19, 32, 16, 29, 28, 27, 19, 12, 14, 16, 1, 27, 25, 12, 14, 16, 1, 27, 25, 31, 16, 20, 27], [25, 12, 22, 14, 16, 23, 27, 19, 5, 14, 16, 10, 27, 25, 12, 22, 14, 16, 6, 27, 25, 4, 16, 20, 28, 27, 19, 32, 16, 29, 28, 27, 19, 12, 14, 16, 1, 27, 25, 12, 14, 16, 1, 27, 25, 31, 16, 20, 27, 25, 21, 16, 20, 28, 27, 25, 2, 14, 16, 6, 27], [19, 8, 11, 16, 20, 28, 27, 25, 5, 14, 16, 10, 27], [19, 8, 11, 16, 20, 28, 27, 25, 5, 14, 16, 10, 27, 36, 2, 14, 16, 18, 27, 19, 31, 16, 20, 27], [19, 8, 11, 16, 20, 28, 27, 25, 5, 14, 16, 10, 27, 36, 2, 14, 16, 18, 27, 19, 31, 16, 20, 27, 19, 21, 16, 20, 28, 27, 36, 2, 14, 16, 10, 27], [19, 8, 11, 16, 20, 28, 27, 25, 5, 14, 16, 10, 27, 36, 2, 14, 16, 18, 27, 19, 31, 16, 20, 27, 19, 21, 16, 20, 28, 27, 36, 2, 14, 16, 10, 27, 25, 8, 11, 16, 29, 28, 27, 19, 12, 22, 14, 16, 18, 27], [19, 8, 11, 16, 20, 28, 27, 25, 5, 14, 16, 10, 27, 36, 2, 14, 16, 18, 27, 19, 31, 16, 20, 27, 19, 21, 16, 20, 28, 27, 36, 2, 14, 16, 10, 27, 25, 8, 11, 16, 29, 28, 27, 19, 12, 22, 14, 16, 18, 27, 19, 2, 14, 16, 23, 27, 35, 12, 22, 14, 16, 6, 27], [25, 12, 22, 14, 16, 6, 27, 36, 5, 14, 16, 1, 27], [25, 12, 22, 14, 16, 6, 27, 36, 5, 14, 16, 1, 27, 36, 32, 16, 17, 28, 27, 36, 12, 22, 14, 16, 23, 27], [25, 12, 22, 14, 16, 6, 27, 36, 5, 14, 16, 1, 27, 36, 32, 16, 17, 28, 27, 36, 12, 22, 14, 16, 23, 27, 36, 26, 33, 16, 17, 27, 36, 8, 11, 16, 17, 28, 27], [25, 12, 22, 14, 16, 6, 27, 36, 5, 14, 16, 1, 27, 36, 32, 16, 17, 28, 27, 36, 12, 22, 14, 16, 23, 27, 36, 26, 33, 16, 17, 27, 36, 8, 11, 16, 17, 28, 27, 25, 5, 14, 16, 23, 27, 36, 24, 16, 17, 27], [25, 12, 22, 14, 16, 6, 27, 36, 5, 14, 16, 1, 27, 36, 32, 16, 17, 28, 27, 36, 12, 22, 14, 16, 23, 27, 36, 26, 33, 16, 17, 27, 36, 8, 11, 16, 17, 28, 27, 25, 5, 14, 16, 23, 27, 36, 24, 16, 17, 27, 25, 12, 14, 16, 6, 27, 36, 8, 11, 16, 17, 28, 27], [25, 2, 14, 16, 1, 27, 36, 12, 22, 14, 16, 1, 27], [25, 2, 14, 16, 1, 27, 36, 12, 22, 14, 16, 1, 27, 25, 12, 22, 14, 16, 10, 27, 19, 4, 16, 29, 28, 27], [25, 2, 14, 16, 1, 27, 36, 12, 22, 14, 16, 1, 27, 25, 12, 22, 14, 16, 10, 27, 19, 4, 16, 29, 28, 27, 19, 31, 16, 29, 28, 27, 35, 2, 14, 16, 23, 27], [25, 2, 14, 16, 1, 27, 36, 12, 22, 14, 16, 1, 27, 25, 12, 22, 14, 16, 10, 27, 19, 4, 16, 29, 28, 27, 19, 31, 16, 29, 28, 27, 35, 2, 14, 16, 23, 27, 25, 8, 11, 16, 20, 28, 27, 35, 8, 11, 16, 17, 28, 27], [25, 2, 14, 16, 1, 27, 36, 12, 22, 14, 16, 1, 27, 25, 12, 22, 14, 16, 10, 27, 19, 4, 16, 29, 28, 27, 19, 31, 16, 29, 28, 27, 35, 2, 14, 16, 23, 27, 25, 8, 11, 16, 20, 28, 27, 35, 8, 11, 16, 17, 28, 27, 36, 5, 14, 16, 10, 27, 25, 26, 33, 16, 20, 27], [25, 9, 14, 16, 6, 27, 25, 12, 14, 16, 10, 27], [25, 9, 14, 16, 6, 27, 25, 12, 14, 16, 10, 27, 36, 32, 16, 20, 28, 27, 25, 2, 14, 16, 18, 27], [25, 9, 14, 16, 6, 27, 25, 12, 14, 16, 10, 27, 36, 32, 16, 20, 28, 27, 25, 2, 14, 16, 18, 27, 36, 12, 22, 14, 16, 10, 27, 36, 30, 16, 20, 28, 27], [25, 9, 14, 16, 6, 27, 25, 12, 14, 16, 10, 27, 36, 32, 16, 20, 28, 27, 25, 2, 14, 16, 18, 27, 36, 12, 22, 14, 16, 10, 27, 36, 30, 16, 20, 28, 27, 25, 9, 14, 16, 23, 27, 35, 12, 22, 14, 16, 23, 27], [25, 9, 14, 16, 6, 27, 25, 12, 14, 16, 10, 27, 36, 32, 16, 20, 28, 27, 25, 2, 14, 16, 18, 27, 36, 12, 22, 14, 16, 10, 27, 36, 30, 16, 20, 28, 27, 25, 9, 14, 16, 23, 27, 35, 12, 22, 14, 16, 23, 27, 19, 12, 14, 16, 23, 27, 19, 2, 14, 16, 18, 27], [25, 12, 14, 16, 10, 27, 19, 8, 11, 16, 20, 28, 27], [25, 12, 14, 16, 10, 27, 19, 8, 11, 16, 20, 28, 27, 25, 12, 22, 14, 16, 1, 27, 25, 5, 14, 16, 3, 27], [25, 12, 14, 16, 10, 27, 19, 8, 11, 16, 20, 28, 27, 25, 12, 22, 14, 16, 1, 27, 25, 5, 14, 16, 3, 27, 25, 5, 14, 16, 10, 27, 35, 12, 22, 14, 16, 6, 27], [25, 12, 14, 16, 10, 27, 19, 8, 11, 16, 20, 28, 27, 25, 12, 22, 14, 16, 1, 27, 25, 5, 14, 16, 3, 27, 25, 5, 14, 16, 10, 27, 35, 12, 22, 14, 16, 6, 27, 36, 2, 14, 16, 18, 27, 19, 30, 16, 20, 27], [25, 12, 14, 16, 10, 27, 19, 8, 11, 16, 20, 28, 27, 25, 12, 22, 14, 16, 1, 27, 25, 5, 14, 16, 3, 27, 25, 5, 14, 16, 10, 27, 35, 12, 22, 14, 16, 6, 27, 36, 2, 14, 16, 18, 27, 19, 30, 16, 20, 27, 36, 2, 14, 16, 10, 27, 19, 32, 16, 20, 28, 27], [25, 12, 14, 16, 10, 27, 35, 9, 14, 16, 6, 27], [25, 12, 14, 16, 10, 27, 35, 9, 14, 16, 6, 27, 25, 12, 22, 14, 16, 1, 27, 35, 12, 14, 16, 3, 27], [25, 12, 14, 16, 10, 27, 35, 9, 14, 16, 6, 27, 25, 12, 22, 14, 16, 1, 27, 35, 12, 14, 16, 3, 27, 35, 2, 14, 16, 10, 27, 25, 2, 14, 16, 10, 27], [25, 12, 14, 16, 10, 27, 35, 9, 14, 16, 6, 27, 25, 12, 22, 14, 16, 1, 27, 35, 12, 14, 16, 3, 27, 35, 2, 14, 16, 10, 27, 25, 2, 14, 16, 10, 27, 35, 12, 14, 16, 6, 27, 19, 12, 22, 14, 16, 1, 27], [25, 12, 14, 16, 10, 27, 35, 9, 14, 16, 6, 27, 25, 12, 22, 14, 16, 1, 27, 35, 12, 14, 16, 3, 27, 35, 2, 14, 16, 10, 27, 25, 2, 14, 16, 10, 27, 35, 12, 14, 16, 6, 27, 19, 12, 22, 14, 16, 1, 27, 35, 5, 14, 16, 23, 27, 25, 9, 14, 16, 18, 27], [25, 12, 14, 16, 10, 27, 36, 8, 11, 16, 29, 28, 27], [25, 12, 14, 16, 10, 27, 36, 8, 11, 16, 29, 28, 27, 35, 2, 14, 16, 18, 27, 36, 26, 33, 16, 29, 27], [25, 12, 14, 16, 10, 27, 36, 8, 11, 16, 29, 28, 27, 35, 2, 14, 16, 18, 27, 36, 26, 33, 16, 29, 27, 35, 8, 11, 16, 29, 28, 27, 19, 12, 22, 14, 16, 1, 27], [25, 12, 14, 16, 10, 27, 36, 8, 11, 16, 29, 28, 27, 35, 2, 14, 16, 18, 27, 36, 26, 33, 16, 29, 27, 35, 8, 11, 16, 29, 28, 27, 19, 12, 22, 14, 16, 1, 27, 35, 4, 16, 20, 28, 27, 35, 31, 16, 20, 27], [25, 12, 14, 16, 10, 27, 36, 8, 11, 16, 29, 28, 27, 35, 2, 14, 16, 18, 27, 36, 26, 33, 16, 29, 27, 35, 8, 11, 16, 29, 28, 27, 19, 12, 22, 14, 16, 1, 27, 35, 4, 16, 20, 28, 27, 35, 31, 16, 20, 27, 19, 9, 14, 16, 18, 27, 35, 8, 11, 16, 17, 28, 27], [25, 12, 14, 16, 1, 27, 35, 9, 14, 16, 10, 27], [25, 12, 14, 16, 1, 27, 35, 9, 14, 16, 10, 27, 36, 12, 22, 14, 16, 1, 27, 25, 2, 14, 16, 6, 27], [25, 12, 14, 16, 1, 27, 35, 9, 14, 16, 10, 27, 36, 12, 22, 14, 16, 1, 27, 25, 2, 14, 16, 6, 27, 19, 32, 16, 17, 28, 27, 36, 8, 11, 16, 29, 28, 27], [25, 12, 14, 16, 1, 27, 35, 9, 14, 16, 10, 27, 36, 12, 22, 14, 16, 1, 27, 25, 2, 14, 16, 6, 27, 19, 32, 16, 17, 28, 27, 36, 8, 11, 16, 29, 28, 27, 19, 31, 16, 17, 27, 25, 2, 14, 16, 23, 27], [25, 12, 14, 16, 1, 27, 35, 9, 14, 16, 10, 27, 36, 12, 22, 14, 16, 1, 27, 25, 2, 14, 16, 6, 27, 19, 32, 16, 17, 28, 27, 36, 8, 11, 16, 29, 28, 27, 19, 31, 16, 17, 27, 25, 2, 14, 16, 23, 27, 36, 9, 14, 16, 18, 27, 35, 9, 14, 16, 6, 27], [19, 21, 16, 29, 28, 27, 19, 30, 16, 29, 27, 25, 9, 14, 16, 18, 27, 19, 5, 14, 16, 23, 27], [19, 21, 16, 29, 28, 27, 19, 30, 16, 29, 27, 25, 9, 14, 16, 18, 27, 19, 5, 14, 16, 23, 27, 35, 2, 14, 16, 3, 27, 35, 12, 14, 16, 1, 27], [19, 21, 16, 29, 28, 27, 19, 30, 16, 29, 27, 25, 9, 14, 16, 18, 27, 19, 5, 14, 16, 23, 27, 35, 2, 14, 16, 3, 27, 35, 12, 14, 16, 1, 27, 25, 9, 14, 16, 1, 27, 35, 5, 14, 16, 18, 27], [19, 21, 16, 29, 28, 27, 19, 30, 16, 29, 27, 25, 9, 14, 16, 18, 27, 19, 5, 14, 16, 23, 27, 35, 2, 14, 16, 3, 27, 35, 12, 14, 16, 1, 27, 25, 9, 14, 16, 1, 27, 35, 5, 14, 16, 18, 27, 19, 32, 16, 20, 28, 27, 19, 31, 16, 20, 27], [19, 21, 16, 29, 28, 27, 19, 30, 16, 29, 27, 25, 9, 14, 16, 18, 27, 19, 5, 14, 16, 23, 27, 35, 2, 14, 16, 3, 27, 35, 12, 14, 16, 1, 27, 25, 9, 14, 16, 1, 27, 35, 5, 14, 16, 18, 27, 19, 32, 16, 20, 28, 27, 19, 31, 16, 20, 27, 35, 9, 14, 16, 23, 27, 35, 4, 16, 20, 28, 27], [36, 12, 22, 14, 16, 6, 27, 35, 4, 16, 17, 28, 27], [36, 12, 22, 14, 16, 6, 27, 35, 4, 16, 17, 28, 27, 35, 24, 16, 17, 27, 19, 4, 16, 17, 28, 27], [36, 12, 22, 14, 16, 6, 27, 35, 4, 16, 17, 28, 27, 35, 24, 16, 17, 27, 19, 4, 16, 17, 28, 27, 36, 9, 14, 16, 18, 27, 25, 2, 14, 16, 6, 27], [36, 12, 22, 14, 16, 6, 27, 35, 4, 16, 17, 28, 27, 35, 24, 16, 17, 27, 19, 4, 16, 17, 28, 27, 36, 9, 14, 16, 18, 27, 25, 2, 14, 16, 6, 27, 19, 9, 14, 16, 23, 27, 36, 9, 14, 16, 23, 27], [36, 12, 22, 14, 16, 6, 27, 35, 4, 16, 17, 28, 27, 35, 24, 16, 17, 27, 19, 4, 16, 17, 28, 27, 36, 9, 14, 16, 18, 27, 25, 2, 14, 16, 6, 27, 19, 9, 14, 16, 23, 27, 36, 9, 14, 16, 23, 27, 35, 2, 14, 16, 10, 27, 19, 24, 16, 17, 27], [19, 8, 11, 16, 17, 28, 27, 19, 24, 16, 17, 27, 36, 12, 14, 16, 23, 27, 36, 5, 14, 16, 3, 27], [19, 8, 11, 16, 17, 28, 27, 19, 24, 16, 17, 27, 36, 12, 14, 16, 23, 27, 36, 5, 14, 16, 3, 27, 36, 8, 11, 16, 20, 28, 27, 36, 30, 16, 20, 27], [19, 8, 11, 16, 17, 28, 27, 19, 24, 16, 17, 27, 36, 12, 14, 16, 23, 27, 36, 5, 14, 16, 3, 27, 36, 8, 11, 16, 20, 28, 27, 36, 30, 16, 20, 27, 35, 9, 14, 16, 18, 27, 25, 12, 22, 14, 16, 18, 27], [19, 8, 11, 16, 17, 28, 27, 19, 24, 16, 17, 27, 36, 12, 14, 16, 23, 27, 36, 5, 14, 16, 3, 27, 36, 8, 11, 16, 20, 28, 27, 36, 30, 16, 20, 27, 35, 9, 14, 16, 18, 27, 25, 12, 22, 14, 16, 18, 27, 36, 12, 22, 14, 16, 18, 27, 36, 5, 14, 16, 1, 27], [19, 8, 11, 16, 17, 28, 27, 19, 24, 16, 17, 27, 36, 12, 14, 16, 23, 27, 36, 5, 14, 16, 3, 27, 36, 8, 11, 16, 20, 28, 27, 36, 30, 16, 20, 27, 35, 9, 14, 16, 18, 27, 25, 12, 22, 14, 16, 18, 27, 36, 12, 22, 14, 16, 18, 27, 36, 5, 14, 16, 1, 27, 25, 4, 16, 29, 28, 27, 25, 5, 14, 16, 1, 27], [36, 21, 16, 17, 28, 27, 36, 24, 16, 17, 28, 27, 19, 9, 14, 16, 23, 27, 36, 12, 22, 14, 16, 10, 27], [36, 21, 16, 17, 28, 27, 36, 24, 16, 17, 28, 27, 19, 9, 14, 16, 23, 27, 36, 12, 22, 14, 16, 10, 27, 25, 9, 14, 16, 23, 27, 36, 21, 16, 20, 28, 27], [36, 21, 16, 17, 28, 27, 36, 24, 16, 17, 28, 27, 19, 9, 14, 16, 23, 27, 36, 12, 22, 14, 16, 10, 27, 25, 9, 14, 16, 23, 27, 36, 21, 16, 20, 28, 27, 36, 26, 33, 16, 20, 27, 19, 9, 14, 16, 1, 27], [36, 21, 16, 17, 28, 27, 36, 24, 16, 17, 28, 27, 19, 9, 14, 16, 23, 27, 36, 12, 22, 14, 16, 10, 27, 25, 9, 14, 16, 23, 27, 36, 21, 16, 20, 28, 27, 36, 26, 33, 16, 20, 27, 19, 9, 14, 16, 1, 27, 25, 2, 14, 16, 6, 27, 35, 12, 14, 16, 10, 27], [36, 21, 16, 17, 28, 27, 36, 24, 16, 17, 28, 27, 19, 9, 14, 16, 23, 27, 36, 12, 22, 14, 16, 10, 27, 25, 9, 14, 16, 23, 27, 36, 21, 16, 20, 28, 27, 36, 26, 33, 16, 20, 27, 19, 9, 14, 16, 1, 27, 25, 2, 14, 16, 6, 27, 35, 12, 14, 16, 10, 27, 19, 12, 22, 14, 16, 3, 27, 35, 5, 14, 16, 6, 27], [36, 2, 14, 16, 3, 27, 25, 12, 22, 14, 16, 6, 27], [36, 2, 14, 16, 3, 27, 25, 12, 22, 14, 16, 6, 27, 35, 32, 16, 20, 28, 27, 25, 2, 14, 16, 10, 27], [36, 2, 14, 16, 3, 27, 25, 12, 22, 14, 16, 6, 27, 35, 32, 16, 20, 28, 27, 25, 2, 14, 16, 10, 27, 25, 12, 14, 16, 18, 27, 25, 5, 14, 16, 10, 27], [36, 2, 14, 16, 3, 27, 25, 12, 22, 14, 16, 6, 27, 35, 32, 16, 20, 28, 27, 25, 2, 14, 16, 10, 27, 25, 12, 14, 16, 18, 27, 25, 5, 14, 16, 10, 27, 35, 31, 16, 20, 28, 27, 35, 12, 14, 16, 6, 27], [36, 2, 14, 16, 3, 27, 25, 12, 22, 14, 16, 6, 27, 35, 32, 16, 20, 28, 27, 25, 2, 14, 16, 10, 27, 25, 12, 14, 16, 18, 27, 25, 5, 14, 16, 10, 27, 35, 31, 16, 20, 28, 27, 35, 12, 14, 16, 6, 27, 35, 21, 16, 17, 28, 27, 19, 21, 16, 29, 28, 27], [36, 9, 14, 16, 10, 27, 36, 2, 14, 16, 1, 27], [36, 9, 14, 16, 10, 27, 36, 2, 14, 16, 1, 27, 35, 2, 14, 16, 23, 27, 35, 12, 22, 14, 16, 10, 27], [36, 9, 14, 16, 10, 27, 36, 2, 14, 16, 1, 27, 35, 2, 14, 16, 23, 27, 35, 12, 22, 14, 16, 10, 27, 36, 9, 14, 16, 23, 27, 36, 2, 14, 16, 18, 27], [36, 9, 14, 16, 10, 27, 36, 2, 14, 16, 1, 27, 35, 2, 14, 16, 23, 27, 35, 12, 22, 14, 16, 10, 27, 36, 9, 14, 16, 23, 27, 36, 2, 14, 16, 18, 27, 19, 12, 22, 14, 16, 10, 27, 35, 2, 14, 16, 3, 27], [36, 9, 14, 16, 10, 27, 36, 2, 14, 16, 1, 27, 35, 2, 14, 16, 23, 27, 35, 12, 22, 14, 16, 10, 27, 36, 9, 14, 16, 23, 27, 36, 2, 14, 16, 18, 27, 19, 12, 22, 14, 16, 10, 27, 35, 2, 14, 16, 3, 27, 35, 5, 14, 16, 1, 27, 35, 12, 22, 14, 16, 10, 27], [35, 2, 14, 16, 18, 27, 19, 4, 16, 20, 28, 27], [35, 2, 14, 16, 18, 27, 19, 4, 16, 20, 28, 27, 19, 26, 33, 16, 20, 27, 35, 21, 16, 29, 28, 27], [35, 2, 14, 16, 18, 27, 19, 4, 16, 20, 28, 27, 19, 26, 33, 16, 20, 27, 35, 21, 16, 29, 28, 27, 25, 2, 14, 16, 3, 27, 35, 31, 16, 29, 27], [35, 2, 14, 16, 18, 27, 19, 4, 16, 20, 28, 27, 19, 26, 33, 16, 20, 27, 35, 21, 16, 29, 28, 27, 25, 2, 14, 16, 3, 27, 35, 31, 16, 29, 27, 25, 8, 11, 16, 20, 28, 27, 19, 8, 11, 16, 17, 28, 27], [35, 2, 14, 16, 18, 27, 19, 4, 16, 20, 28, 27, 19, 26, 33, 16, 20, 27, 35, 21, 16, 29, 28, 27, 25, 2, 14, 16, 3, 27, 35, 31, 16, 29, 27, 25, 8, 11, 16, 20, 28, 27, 19, 8, 11, 16, 17, 28, 27, 19, 31, 16, 17, 27, 35, 21, 16, 29, 28, 27, 25, 12, 14, 16, 23, 27, 36, 12, 22, 14, 16, 18, 27], [36, 4, 16, 17, 28, 27, 35, 12, 22, 14, 16, 6, 27], [36, 4, 16, 17, 28, 27, 35, 12, 22, 14, 16, 6, 27, 36, 5, 14, 16, 6, 27, 35, 9, 14, 16, 10, 27], [36, 4, 16, 17, 28, 27, 35, 12, 22, 14, 16, 6, 27, 36, 5, 14, 16, 6, 27, 35, 9, 14, 16, 10, 27, 36, 24, 16, 17, 28, 27, 19, 12, 14, 16, 18, 27], [36, 4, 16, 17, 28, 27, 35, 12, 22, 14, 16, 6, 27, 36, 5, 14, 16, 6, 27, 35, 9, 14, 16, 10, 27, 36, 24, 16, 17, 28, 27, 19, 12, 14, 16, 18, 27, 25, 12, 22, 14, 16, 18, 27, 19, 21, 16, 29, 28, 27], [36, 4, 16, 17, 28, 27, 35, 12, 22, 14, 16, 6, 27, 36, 5, 14, 16, 6, 27, 35, 9, 14, 16, 10, 27, 36, 24, 16, 17, 28, 27, 19, 12, 14, 16, 18, 27, 25, 12, 22, 14, 16, 18, 27, 19, 21, 16, 29, 28, 27, 36, 5, 14, 16, 23, 27, 36, 21, 16, 20, 28, 27], [36, 12, 14, 16, 10, 27, 19, 21, 16, 17, 28, 27], [36, 12, 14, 16, 10, 27, 19, 21, 16, 17, 28, 27, 19, 5, 14, 16, 1, 27, 35, 4, 16, 20, 28, 27], [36, 12, 14, 16, 10, 27, 19, 21, 16, 17, 28, 27, 19, 5, 14, 16, 1, 27, 35, 4, 16, 20, 28, 27, 19, 26, 33, 16, 17, 27, 19, 32, 16, 17, 28, 27], [36, 12, 14, 16, 10, 27, 19, 21, 16, 17, 28, 27, 19, 5, 14, 16, 1, 27, 35, 4, 16, 20, 28, 27, 19, 26, 33, 16, 17, 27, 19, 32, 16, 17, 28, 27, 19, 24, 16, 17, 27, 19, 12, 22, 14, 16, 10, 27], [36, 12, 14, 16, 10, 27, 19, 21, 16, 17, 28, 27, 19, 5, 14, 16, 1, 27, 35, 4, 16, 20, 28, 27, 19, 26, 33, 16, 17, 27, 19, 32, 16, 17, 28, 27, 19, 24, 16, 17, 27, 19, 12, 22, 14, 16, 10, 27, 36, 9, 14, 16, 6, 27, 35, 12, 14, 16, 23, 27], [35, 2, 14, 16, 3, 27, 36, 5, 14, 16, 6, 27], [35, 2, 14, 16, 3, 27, 36, 5, 14, 16, 6, 27, 19, 2, 14, 16, 18, 27, 35, 9, 14, 16, 10, 27], [35, 2, 14, 16, 3, 27, 36, 5, 14, 16, 6, 27, 19, 2, 14, 16, 18, 27, 35, 9, 14, 16, 10, 27, 19, 9, 14, 16, 3, 27, 36, 12, 22, 14, 16, 18, 27], [35, 2, 14, 16, 3, 27, 36, 5, 14, 16, 6, 27, 19, 2, 14, 16, 18, 27, 35, 9, 14, 16, 10, 27, 19, 9, 14, 16, 3, 27, 36, 12, 22, 14, 16, 18, 27, 36, 9, 14, 16, 3, 27, 25, 21, 16, 20, 28, 27], [35, 2, 14, 16, 3, 27, 36, 5, 14, 16, 6, 27, 19, 2, 14, 16, 18, 27, 35, 9, 14, 16, 10, 27, 19, 9, 14, 16, 3, 27, 36, 12, 22, 14, 16, 18, 27, 36, 9, 14, 16, 3, 27, 25, 21, 16, 20, 28, 27, 35, 8, 11, 16, 29, 28, 27, 35, 26, 33, 16, 29, 27], [35, 21, 16, 20, 28, 27, 35, 12, 22, 14, 16, 6, 27], [35, 21, 16, 20, 28, 27, 35, 12, 22, 14, 16, 6, 27, 19, 9, 14, 16, 23, 27, 35, 9, 14, 16, 18, 27], [35, 21, 16, 20, 28, 27, 35, 12, 22, 14, 16, 6, 27, 19, 9, 14, 16, 23, 27, 35, 9, 14, 16, 18, 27, 19, 12, 22, 14, 16, 1, 27, 36, 12, 14, 16, 3, 27], [35, 21, 16, 20, 28, 27, 35, 12, 22, 14, 16, 6, 27, 19, 9, 14, 16, 23, 27, 35, 9, 14, 16, 18, 27, 19, 12, 22, 14, 16, 1, 27, 36, 12, 14, 16, 3, 27, 25, 5, 14, 16, 10, 27, 35, 30, 16, 20, 27], [35, 21, 16, 20, 28, 27, 35, 12, 22, 14, 16, 6, 27, 19, 9, 14, 16, 23, 27, 35, 9, 14, 16, 18, 27, 19, 12, 22, 14, 16, 1, 27, 36, 12, 14, 16, 3, 27, 25, 5, 14, 16, 10, 27, 35, 30, 16, 20, 27, 19, 9, 14, 16, 3, 27, 19, 9, 14, 16, 18, 27], [19, 32, 16, 20, 28, 27, 19, 2, 14, 16, 10, 27], [19, 32, 16, 20, 28, 27, 19, 2, 14, 16, 10, 27, 35, 12, 22, 14, 16, 6, 27, 35, 2, 14, 16, 18, 27], [19, 32, 16, 20, 28, 27, 19, 2, 14, 16, 10, 27, 35, 12, 22, 14, 16, 6, 27, 35, 2, 14, 16, 18, 27, 19, 21, 16, 17, 28, 27, 19, 31, 16, 17, 27], [19, 32, 16, 20, 28, 27, 19, 2, 14, 16, 10, 27, 35, 12, 22, 14, 16, 6, 27, 35, 2, 14, 16, 18, 27, 19, 21, 16, 17, 28, 27, 19, 31, 16, 17, 27, 19, 4, 16, 17, 28, 27, 36, 9, 14, 16, 6, 27], [19, 32, 16, 20, 28, 27, 19, 2, 14, 16, 10, 27, 35, 12, 22, 14, 16, 6, 27, 35, 2, 14, 16, 18, 27, 19, 21, 16, 17, 28, 27, 19, 31, 16, 17, 27, 19, 4, 16, 17, 28, 27, 36, 9, 14, 16, 6, 27, 19, 26, 33, 16, 17, 27, 25, 12, 22, 14, 16, 18, 27], [19, 12, 14, 16, 6, 27, 35, 2, 14, 16, 3, 27], [19, 12, 14, 16, 6, 27, 35, 2, 14, 16, 3, 27, 35, 12, 22, 14, 16, 18, 27, 36, 5, 14, 16, 10, 27], [19, 12, 14, 16, 6, 27, 35, 2, 14, 16, 3, 27, 35, 12, 22, 14, 16, 18, 27, 36, 5, 14, 16, 10, 27, 25, 2, 14, 16, 1, 27, 25, 2, 14, 16, 10, 27], [19, 12, 14, 16, 6, 27, 35, 2, 14, 16, 3, 27, 35, 12, 22, 14, 16, 18, 27, 36, 5, 14, 16, 10, 27, 25, 2, 14, 16, 1, 27, 25, 2, 14, 16, 10, 27, 35, 12, 14, 16, 3, 27, 35, 2, 14, 16, 10, 27], [19, 12, 14, 16, 6, 27, 35, 2, 14, 16, 3, 27, 35, 12, 22, 14, 16, 18, 27, 36, 5, 14, 16, 10, 27, 25, 2, 14, 16, 1, 27, 25, 2, 14, 16, 10, 27, 35, 12, 14, 16, 3, 27, 35, 2, 14, 16, 10, 27, 19, 9, 14, 16, 1, 27, 36, 9, 14, 16, 6, 27], [35, 2, 14, 16, 3, 27, 35, 9, 14, 16, 18, 27], [35, 2, 14, 16, 3, 27, 35, 9, 14, 16, 18, 27, 19, 2, 14, 16, 10, 27, 36, 8, 11, 16, 17, 28, 27], [35, 2, 14, 16, 3, 27, 35, 9, 14, 16, 18, 27, 19, 2, 14, 16, 10, 27, 36, 8, 11, 16, 17, 28, 27, 35, 12, 22, 14, 16, 3, 27, 19, 12, 22, 14, 16, 1, 27], [35, 2, 14, 16, 3, 27, 35, 9, 14, 16, 18, 27, 19, 2, 14, 16, 10, 27, 36, 8, 11, 16, 17, 28, 27, 35, 12, 22, 14, 16, 3, 27, 19, 12, 22, 14, 16, 1, 27, 35, 12, 14, 16, 1, 27, 19, 12, 22, 14, 16, 10, 27], [35, 2, 14, 16, 3, 27, 35, 9, 14, 16, 18, 27, 19, 2, 14, 16, 10, 27, 36, 8, 11, 16, 17, 28, 27, 35, 12, 22, 14, 16, 3, 27, 19, 12, 22, 14, 16, 1, 27, 35, 12, 14, 16, 1, 27, 19, 12, 22, 14, 16, 10, 27, 36, 5, 14, 16, 23, 27, 35, 32, 16, 20, 28, 27], [25, 12, 14, 16, 1, 27, 25, 12, 22, 14, 16, 23, 27], [25, 12, 14, 16, 1, 27, 25, 12, 22, 14, 16, 23, 27, 36, 5, 14, 16, 6, 27, 19, 5, 14, 16, 10, 27], [25, 12, 14, 16, 1, 27, 25, 12, 22, 14, 16, 23, 27, 36, 5, 14, 16, 6, 27, 19, 5, 14, 16, 10, 27, 19, 9, 14, 16, 3, 27, 35, 21, 16, 20, 28, 27], [25, 12, 14, 16, 1, 27, 25, 12, 22, 14, 16, 23, 27, 36, 5, 14, 16, 6, 27, 19, 5, 14, 16, 10, 27, 19, 9, 14, 16, 3, 27, 35, 21, 16, 20, 28, 27, 19, 2, 14, 16, 23, 27, 35, 9, 14, 16, 1, 27], [25, 12, 14, 16, 1, 27, 25, 12, 22, 14, 16, 23, 27, 36, 5, 14, 16, 6, 27, 19, 5, 14, 16, 10, 27, 19, 9, 14, 16, 3, 27, 35, 21, 16, 20, 28, 27, 19, 2, 14, 16, 23, 27, 35, 9, 14, 16, 1, 27, 19, 2, 14, 16, 6, 27, 25, 5, 14, 16, 18, 27], [36, 8, 11, 16, 20, 28, 27, 19, 2, 14, 16, 18, 27], [36, 8, 11, 16, 20, 28, 27, 19, 2, 14, 16, 18, 27, 25, 9, 14, 16, 10, 27, 19, 5, 14, 16, 23, 27], [36, 8, 11, 16, 20, 28, 27, 19, 2, 14, 16, 18, 27, 25, 9, 14, 16, 10, 27, 19, 5, 14, 16, 23, 27, 25, 2, 14, 16, 1, 27, 19, 9, 14, 16, 18, 27], [36, 8, 11, 16, 20, 28, 27, 19, 2, 14, 16, 18, 27, 25, 9, 14, 16, 10, 27, 19, 5, 14, 16, 23, 27, 25, 2, 14, 16, 1, 27, 19, 9, 14, 16, 18, 27, 36, 26, 33, 16, 20, 27, 25, 9, 14, 16, 18, 27], [36, 8, 11, 16, 20, 28, 27, 19, 2, 14, 16, 18, 27, 25, 9, 14, 16, 10, 27, 19, 5, 14, 16, 23, 27, 25, 2, 14, 16, 1, 27, 19, 9, 14, 16, 18, 27, 36, 26, 33, 16, 20, 27, 25, 9, 14, 16, 18, 27, 36, 2, 14, 16, 23, 27, 36, 12, 22, 14, 16, 18, 27], [19, 12, 14, 16, 10, 27, 35, 2, 14, 16, 18, 27], [19, 12, 14, 16, 10, 27, 35, 2, 14, 16, 18, 27, 19, 12, 14, 16, 18, 27, 19, 2, 14, 16, 23, 27], [19, 12, 14, 16, 10, 27, 35, 2, 14, 16, 18, 27, 19, 12, 14, 16, 18, 27, 19, 2, 14, 16, 23, 27, 35, 9, 14, 16, 6, 27, 19, 8, 11, 16, 29, 28, 27], [19, 12, 14, 16, 10, 27, 35, 2, 14, 16, 18, 27, 19, 12, 14, 16, 18, 27, 19, 2, 14, 16, 23, 27, 35, 9, 14, 16, 6, 27, 19, 8, 11, 16, 29, 28, 27, 35, 4, 16, 17, 28, 27, 35, 5, 14, 16, 18, 27], [19, 12, 14, 16, 10, 27, 35, 2, 14, 16, 18, 27, 19, 12, 14, 16, 18, 27, 19, 2, 14, 16, 23, 27, 35, 9, 14, 16, 6, 27, 19, 8, 11, 16, 29, 28, 27, 35, 4, 16, 17, 28, 27, 35, 5, 14, 16, 18, 27, 19, 24, 16, 29, 27, 19, 12, 14, 16, 10, 27], [36, 4, 16, 20, 28, 27, 19, 21, 16, 17, 28, 27, 35, 2, 14, 16, 6, 27, 36, 12, 22, 14, 16, 23, 27], [36, 4, 16, 20, 28, 27, 19, 21, 16, 17, 28, 27, 35, 2, 14, 16, 6, 27, 36, 12, 22, 14, 16, 23, 27, 19, 31, 16, 17, 27, 19, 21, 16, 17, 28, 27], [36, 4, 16, 20, 28, 27, 19, 21, 16, 17, 28, 27, 35, 2, 14, 16, 6, 27, 36, 12, 22, 14, 16, 23, 27, 19, 31, 16, 17, 27, 19, 21, 16, 17, 28, 27, 36, 26, 33, 16, 20, 27, 36, 21, 16, 20, 28, 27], [36, 4, 16, 20, 28, 27, 19, 21, 16, 17, 28, 27, 35, 2, 14, 16, 6, 27, 36, 12, 22, 14, 16, 23, 27, 19, 31, 16, 17, 27, 19, 21, 16, 17, 28, 27, 36, 26, 33, 16, 20, 27, 36, 21, 16, 20, 28, 27, 36, 2, 14, 16, 18, 27, 19, 30, 16, 17, 27], [36, 4, 16, 20, 28, 27, 19, 21, 16, 17, 28, 27, 35, 2, 14, 16, 6, 27, 36, 12, 22, 14, 16, 23, 27, 19, 31, 16, 17, 27, 19, 21, 16, 17, 28, 27, 36, 26, 33, 16, 20, 27, 36, 21, 16, 20, 28, 27, 36, 2, 14, 16, 18, 27, 19, 30, 16, 17, 27, 35, 5, 14, 16, 10, 27, 19, 8, 11, 16, 17, 28, 27], [36, 4, 16, 20, 28, 27, 25, 12, 14, 16, 6, 27], [36, 4, 16, 20, 28, 27, 25, 12, 14, 16, 6, 27, 35, 9, 14, 16, 6, 27, 36, 2, 14, 16, 23, 27], [36, 4, 16, 20, 28, 27, 25, 12, 14, 16, 6, 27, 35, 9, 14, 16, 6, 27, 36, 2, 14, 16, 23, 27, 25, 8, 11, 16, 17, 28, 27, 35, 5, 14, 16, 18, 27], [36, 4, 16, 20, 28, 27, 25, 12, 14, 16, 6, 27, 35, 9, 14, 16, 6, 27, 36, 2, 14, 16, 23, 27, 25, 8, 11, 16, 17, 28, 27, 35, 5, 14, 16, 18, 27, 25, 9, 14, 16, 23, 27, 25, 31, 16, 17, 27], [36, 4, 16, 20, 28, 27, 25, 12, 14, 16, 6, 27, 35, 9, 14, 16, 6, 27, 36, 2, 14, 16, 23, 27, 25, 8, 11, 16, 17, 28, 27, 35, 5, 14, 16, 18, 27, 25, 9, 14, 16, 23, 27, 25, 31, 16, 17, 27, 36, 4, 16, 17, 28, 27, 25, 12, 22, 14, 16, 18, 27], [36, 9, 14, 16, 23, 27, 35, 8, 11, 16, 17, 28, 27], [36, 9, 14, 16, 23, 27, 35, 8, 11, 16, 17, 28, 27, 19, 12, 22, 14, 16, 18, 27, 25, 5, 14, 16, 1, 27], [36, 9, 14, 16, 23, 27, 35, 8, 11, 16, 17, 28, 27, 19, 12, 22, 14, 16, 18, 27, 25, 5, 14, 16, 1, 27, 25, 9, 14, 16, 6, 27, 35, 12, 14, 16, 6, 27], [36, 9, 14, 16, 23, 27, 35, 8, 11, 16, 17, 28, 27, 19, 12, 22, 14, 16, 18, 27, 25, 5, 14, 16, 1, 27, 25, 9, 14, 16, 6, 27, 35, 12, 14, 16, 6, 27, 35, 12, 14, 16, 10, 27, 35, 24, 16, 17, 27], [36, 9, 14, 16, 23, 27, 35, 8, 11, 16, 17, 28, 27, 19, 12, 22, 14, 16, 18, 27, 25, 5, 14, 16, 1, 27, 25, 9, 14, 16, 6, 27, 35, 12, 14, 16, 6, 27, 35, 12, 14, 16, 10, 27, 35, 24, 16, 17, 27, 19, 8, 11, 16, 29, 28, 27, 35, 8, 11, 16, 17, 28, 27], [35, 9, 14, 16, 1, 27, 19, 5, 14, 16, 6, 27], [35, 9, 14, 16, 1, 27, 19, 5, 14, 16, 6, 27, 35, 9, 14, 16, 10, 27, 36, 9, 14, 16, 18, 27], [35, 9, 14, 16, 1, 27, 19, 5, 14, 16, 6, 27, 35, 9, 14, 16, 10, 27, 36, 9, 14, 16, 18, 27, 19, 12, 14, 16, 3, 27, 36, 9, 14, 16, 1, 27], [35, 9, 14, 16, 1, 27, 19, 5, 14, 16, 6, 27, 35, 9, 14, 16, 10, 27, 36, 9, 14, 16, 18, 27, 19, 12, 14, 16, 3, 27, 36, 9, 14, 16, 1, 27, 36, 21, 16, 17, 28, 27, 35, 12, 14, 16, 23, 27], [35, 9, 14, 16, 1, 27, 19, 5, 14, 16, 6, 27, 35, 9, 14, 16, 10, 27, 36, 9, 14, 16, 18, 27, 19, 12, 14, 16, 3, 27, 36, 9, 14, 16, 1, 27, 36, 21, 16, 17, 28, 27, 35, 12, 14, 16, 23, 27, 35, 4, 16, 29, 28, 27, 25, 2, 14, 16, 6, 27], [19, 12, 22, 14, 16, 1, 27, 35, 12, 14, 16, 23, 27], [19, 12, 22, 14, 16, 1, 27, 35, 12, 14, 16, 23, 27, 19, 4, 16, 29, 28, 27, 19, 31, 16, 29, 27], [19, 12, 22, 14, 16, 1, 27, 35, 12, 14, 16, 23, 27, 19, 4, 16, 29, 28, 27, 19, 31, 16, 29, 27, 19, 21, 16, 29, 28, 27, 19, 2, 14, 16, 6, 27], [19, 12, 22, 14, 16, 1, 27, 35, 12, 14, 16, 23, 27, 19, 4, 16, 29, 28, 27, 19, 31, 16, 29, 27, 19, 21, 16, 29, 28, 27, 19, 2, 14, 16, 6, 27, 35, 21, 16, 17, 28, 27, 35, 26, 33, 16, 17, 27], [19, 12, 22, 14, 16, 1, 27, 35, 12, 14, 16, 23, 27, 19, 4, 16, 29, 28, 27, 19, 31, 16, 29, 27, 19, 21, 16, 29, 28, 27, 19, 2, 14, 16, 6, 27, 35, 21, 16, 17, 28, 27, 35, 26, 33, 16, 17, 27, 19, 21, 16, 20, 28, 27, 25, 9, 14, 16, 6, 27], [36, 12, 14, 16, 18, 27, 25, 4, 16, 17, 28, 27], [36, 12, 14, 16, 18, 27, 25, 4, 16, 17, 28, 27, 36, 4, 16, 20, 28, 27, 35, 5, 14, 16, 23, 27], [36, 12, 14, 16, 18, 27, 25, 4, 16, 17, 28, 27, 36, 4, 16, 20, 28, 27, 35, 5, 14, 16, 23, 27, 25, 12, 14, 16, 23, 27, 36, 26, 33, 16, 20, 27], [36, 12, 14, 16, 18, 27, 25, 4, 16, 17, 28, 27, 36, 4, 16, 20, 28, 27, 35, 5, 14, 16, 23, 27, 25, 12, 14, 16, 23, 27, 36, 26, 33, 16, 20, 27, 19, 5, 14, 16, 10, 27, 25, 31, 16, 17, 28, 27], [36, 12, 14, 16, 18, 27, 25, 4, 16, 17, 28, 27, 36, 4, 16, 20, 28, 27, 35, 5, 14, 16, 23, 27, 25, 12, 14, 16, 23, 27, 36, 26, 33, 16, 20, 27, 19, 5, 14, 16, 10, 27, 25, 31, 16, 17, 28, 27, 36, 8, 11, 16, 20, 28, 27, 19, 2, 14, 16, 6, 27], [19, 2, 14, 16, 10, 27, 36, 12, 22, 14, 16, 10, 27], [19, 2, 14, 16, 10, 27, 36, 12, 22, 14, 16, 10, 27, 19, 12, 14, 16, 6, 27, 19, 9, 14, 16, 3, 27], [19, 2, 14, 16, 10, 27, 36, 12, 22, 14, 16, 10, 27, 19, 12, 14, 16, 6, 27, 19, 9, 14, 16, 3, 27, 36, 8, 11, 16, 20, 28, 27, 19, 5, 14, 16, 23, 27], [19, 2, 14, 16, 10, 27, 36, 12, 22, 14, 16, 10, 27, 19, 12, 14, 16, 6, 27, 19, 9, 14, 16, 3, 27, 36, 8, 11, 16, 20, 28, 27, 19, 5, 14, 16, 23, 27, 36, 9, 14, 16, 1, 27, 25, 5, 14, 16, 1, 27], [19, 2, 14, 16, 10, 27, 36, 12, 22, 14, 16, 10, 27, 19, 12, 14, 16, 6, 27, 19, 9, 14, 16, 3, 27, 36, 8, 11, 16, 20, 28, 27, 19, 5, 14, 16, 23, 27, 36, 9, 14, 16, 1, 27, 25, 5, 14, 16, 1, 27, 25, 12, 22, 14, 16, 6, 27, 36, 30, 16, 20, 28, 27], [36, 21, 16, 29, 28, 27, 25, 5, 14, 16, 18, 27], [36, 21, 16, 29, 28, 27, 25, 5, 14, 16, 18, 27, 36, 30, 16, 29, 27, 19, 12, 14, 16, 23, 27], [36, 21, 16, 29, 28, 27, 25, 5, 14, 16, 18, 27, 36, 30, 16, 29, 27, 19, 12, 14, 16, 23, 27, 19, 2, 14, 16, 10, 27, 25, 5, 14, 16, 10, 27], [36, 21, 16, 29, 28, 27, 25, 5, 14, 16, 18, 27, 36, 30, 16, 29, 27, 19, 12, 14, 16, 23, 27, 19, 2, 14, 16, 10, 27, 25, 5, 14, 16, 10, 27, 36, 5, 14, 16, 18, 27, 19, 21, 16, 29, 28, 27], [36, 21, 16, 29, 28, 27, 25, 5, 14, 16, 18, 27, 36, 30, 16, 29, 27, 19, 12, 14, 16, 23, 27, 19, 2, 14, 16, 10, 27, 25, 5, 14, 16, 10, 27, 36, 5, 14, 16, 18, 27, 19, 21, 16, 29, 28, 27, 19, 2, 14, 16, 6, 27, 36, 9, 14, 16, 23, 27], [19, 21, 16, 29, 28, 27, 19, 24, 16, 29, 27, 35, 9, 14, 16, 6, 27, 35, 9, 14, 16, 23, 27], [19, 21, 16, 29, 28, 27, 19, 24, 16, 29, 27, 35, 9, 14, 16, 6, 27, 35, 9, 14, 16, 23, 27, 36, 12, 22, 14, 16, 6, 27, 36, 21, 16, 29, 28, 27], [19, 21, 16, 29, 28, 27, 19, 24, 16, 29, 27, 35, 9, 14, 16, 6, 27, 35, 9, 14, 16, 23, 27, 36, 12, 22, 14, 16, 6, 27, 36, 21, 16, 29, 28, 27, 19, 2, 14, 16, 23, 27, 36, 30, 16, 29, 27], [19, 21, 16, 29, 28, 27, 19, 24, 16, 29, 27, 35, 9, 14, 16, 6, 27, 35, 9, 14, 16, 23, 27, 36, 12, 22, 14, 16, 6, 27, 36, 21, 16, 29, 28, 27, 19, 2, 14, 16, 23, 27, 36, 30, 16, 29, 27, 19, 9, 14, 16, 1, 27, 36, 12, 14, 16, 3, 27], [19, 21, 16, 29, 28, 27, 19, 24, 16, 29, 27, 35, 9, 14, 16, 6, 27, 35, 9, 14, 16, 23, 27, 36, 12, 22, 14, 16, 6, 27, 36, 21, 16, 29, 28, 27, 19, 2, 14, 16, 23, 27, 36, 30, 16, 29, 27, 19, 9, 14, 16, 1, 27, 36, 12, 14, 16, 3, 27, 25, 12, 22, 14, 16, 6, 27, 25, 32, 16, 29, 28, 27], [36, 32, 16, 17, 28, 27, 25, 2, 14, 16, 18, 27], [36, 32, 16, 17, 28, 27, 25, 2, 14, 16, 18, 27, 36, 24, 16, 17, 28, 27, 19, 2, 14, 16, 23, 27], [36, 32, 16, 17, 28, 27, 25, 2, 14, 16, 18, 27, 36, 24, 16, 17, 28, 27, 19, 2, 14, 16, 23, 27, 25, 12, 14, 16, 10, 27, 36, 2, 14, 16, 3, 27], [36, 32, 16, 17, 28, 27, 25, 2, 14, 16, 18, 27, 36, 24, 16, 17, 28, 27, 19, 2, 14, 16, 23, 27, 25, 12, 14, 16, 10, 27, 36, 2, 14, 16, 3, 27, 35, 5, 14, 16, 10, 27, 19, 12, 22, 14, 16, 10, 27], [36, 32, 16, 17, 28, 27, 25, 2, 14, 16, 18, 27, 36, 24, 16, 17, 28, 27, 19, 2, 14, 16, 23, 27, 25, 12, 14, 16, 10, 27, 36, 2, 14, 16, 3, 27, 35, 5, 14, 16, 10, 27, 19, 12, 22, 14, 16, 10, 27, 36, 12, 22, 14, 16, 1, 27, 36, 4, 16, 29, 28, 27], [36, 8, 11, 16, 17, 28, 27, 35, 12, 22, 14, 16, 10, 27], [36, 8, 11, 16, 17, 28, 27, 35, 12, 22, 14, 16, 10, 27, 36, 31, 16, 17, 27, 35, 32, 16, 29, 28, 27], [36, 8, 11, 16, 17, 28, 27, 35, 12, 22, 14, 16, 10, 27, 36, 31, 16, 17, 27, 35, 32, 16, 29, 28, 27, 35, 12, 14, 16, 6, 27, 19, 5, 14, 16, 1, 27], [36, 8, 11, 16, 17, 28, 27, 35, 12, 22, 14, 16, 10, 27, 36, 31, 16, 17, 27, 35, 32, 16, 29, 28, 27, 35, 12, 14, 16, 6, 27, 19, 5, 14, 16, 1, 27, 36, 32, 16, 17, 28, 27, 36, 30, 16, 17, 28, 27], [36, 8, 11, 16, 17, 28, 27, 35, 12, 22, 14, 16, 10, 27, 36, 31, 16, 17, 27, 35, 32, 16, 29, 28, 27, 35, 12, 14, 16, 6, 27, 19, 5, 14, 16, 1, 27, 36, 32, 16, 17, 28, 27, 36, 30, 16, 17, 28, 27, 19, 4, 16, 17, 28, 27, 19, 26, 33, 16, 17, 27], [19, 2, 14, 16, 18, 27, 36, 2, 14, 16, 3, 27], [19, 2, 14, 16, 18, 27, 36, 2, 14, 16, 3, 27, 36, 5, 14, 16, 1, 27, 36, 4, 16, 20, 28, 27], [19, 2, 14, 16, 18, 27, 36, 2, 14, 16, 3, 27, 36, 5, 14, 16, 1, 27, 36, 4, 16, 20, 28, 27, 25, 5, 14, 16, 18, 27, 19, 12, 22, 14, 16, 3, 27], [19, 2, 14, 16, 18, 27, 36, 2, 14, 16, 3, 27, 36, 5, 14, 16, 1, 27, 36, 4, 16, 20, 28, 27, 25, 5, 14, 16, 18, 27, 19, 12, 22, 14, 16, 3, 27, 36, 12, 22, 14, 16, 10, 27, 25, 12, 22, 14, 16, 10, 27], [19, 2, 14, 16, 18, 27, 36, 2, 14, 16, 3, 27, 36, 5, 14, 16, 1, 27, 36, 4, 16, 20, 28, 27, 25, 5, 14, 16, 18, 27, 19, 12, 22, 14, 16, 3, 27, 36, 12, 22, 14, 16, 10, 27, 25, 12, 22, 14, 16, 10, 27, 25, 2, 14, 16, 18, 27, 36, 8, 11, 16, 29, 28, 27], [25, 2, 14, 16, 23, 27, 25, 4, 16, 20, 28, 27], [25, 2, 14, 16, 23, 27, 25, 4, 16, 20, 28, 27, 25, 30, 16, 20, 28, 27, 25, 5, 14, 16, 18, 27], [25, 2, 14, 16, 23, 27, 25, 4, 16, 20, 28, 27, 25, 30, 16, 20, 28, 27, 25, 5, 14, 16, 18, 27, 35, 12, 22, 14, 16, 3, 27, 19, 12, 14, 16, 23, 27], [25, 2, 14, 16, 23, 27, 25, 4, 16, 20, 28, 27, 25, 30, 16, 20, 28, 27, 25, 5, 14, 16, 18, 27, 35, 12, 22, 14, 16, 3, 27, 19, 12, 14, 16, 23, 27, 19, 2, 14, 16, 6, 27, 35, 2, 14, 16, 6, 27], [25, 2, 14, 16, 23, 27, 25, 4, 16, 20, 28, 27, 25, 30, 16, 20, 28, 27, 25, 5, 14, 16, 18, 27, 35, 12, 22, 14, 16, 3, 27, 19, 12, 14, 16, 23, 27, 19, 2, 14, 16, 6, 27, 35, 2, 14, 16, 6, 27, 35, 2, 14, 16, 18, 27, 35, 5, 14, 16, 6, 27], [25, 12, 22, 14, 16, 3, 27, 19, 12, 22, 14, 16, 6, 27], [25, 12, 22, 14, 16, 3, 27, 19, 12, 22, 14, 16, 6, 27, 25, 5, 14, 16, 23, 27, 19, 2, 14, 16, 18, 27], [25, 12, 22, 14, 16, 3, 27, 19, 12, 22, 14, 16, 6, 27, 25, 5, 14, 16, 23, 27, 19, 2, 14, 16, 18, 27, 19, 5, 14, 16, 1, 27, 19, 12, 14, 16, 10, 27], [25, 12, 22, 14, 16, 3, 27, 19, 12, 22, 14, 16, 6, 27, 25, 5, 14, 16, 23, 27, 19, 2, 14, 16, 18, 27, 19, 5, 14, 16, 1, 27, 19, 12, 14, 16, 10, 27, 25, 21, 16, 17, 28, 27, 25, 31, 16, 17, 28, 27], [25, 12, 22, 14, 16, 3, 27, 19, 12, 22, 14, 16, 6, 27, 25, 5, 14, 16, 23, 27, 19, 2, 14, 16, 18, 27, 19, 5, 14, 16, 1, 27, 19, 12, 14, 16, 10, 27, 25, 21, 16, 17, 28, 27, 25, 31, 16, 17, 28, 27, 25, 21, 16, 17, 28, 27, 25, 30, 16, 17, 27], [35, 21, 16, 20, 28, 27, 35, 12, 14, 16, 6, 27], [35, 21, 16, 20, 28, 27, 35, 12, 14, 16, 6, 27, 35, 8, 11, 16, 17, 28, 27, 25, 5, 14, 16, 23, 27], [35, 21, 16, 20, 28, 27, 35, 12, 14, 16, 6, 27, 35, 8, 11, 16, 17, 28, 27, 25, 5, 14, 16, 23, 27, 35, 31, 16, 20, 27, 25, 12, 14, 16, 6, 27], [35, 21, 16, 20, 28, 27, 35, 12, 14, 16, 6, 27, 35, 8, 11, 16, 17, 28, 27, 25, 5, 14, 16, 23, 27, 35, 31, 16, 20, 27, 25, 12, 14, 16, 6, 27, 25, 21, 16, 20, 28, 27, 35, 24, 16, 17, 27], [35, 21, 16, 20, 28, 27, 35, 12, 14, 16, 6, 27, 35, 8, 11, 16, 17, 28, 27, 25, 5, 14, 16, 23, 27, 35, 31, 16, 20, 27, 25, 12, 14, 16, 6, 27, 25, 21, 16, 20, 28, 27, 35, 24, 16, 17, 27, 35, 12, 14, 16, 18, 27, 25, 26, 33, 16, 20, 27], [25, 32, 16, 20, 28, 27, 36, 5, 14, 16, 23, 27], [25, 32, 16, 20, 28, 27, 36, 5, 14, 16, 23, 27, 19, 2, 14, 16, 3, 27, 36, 12, 14, 16, 10, 27], [25, 32, 16, 20, 28, 27, 36, 5, 14, 16, 23, 27, 19, 2, 14, 16, 3, 27, 36, 12, 14, 16, 10, 27, 36, 12, 22, 14, 16, 1, 27, 36, 12, 22, 14, 16, 23, 27], [25, 32, 16, 20, 28, 27, 36, 5, 14, 16, 23, 27, 19, 2, 14, 16, 3, 27, 36, 12, 14, 16, 10, 27, 36, 12, 22, 14, 16, 1, 27, 36, 12, 22, 14, 16, 23, 27, 35, 9, 14, 16, 3, 27, 35, 12, 22, 14, 16, 1, 27], [25, 32, 16, 20, 28, 27, 36, 5, 14, 16, 23, 27, 19, 2, 14, 16, 3, 27, 36, 12, 14, 16, 10, 27, 36, 12, 22, 14, 16, 1, 27, 36, 12, 22, 14, 16, 23, 27, 35, 9, 14, 16, 3, 27, 35, 12, 22, 14, 16, 1, 27, 25, 2, 14, 16, 3, 27, 35, 2, 14, 16, 23, 27], [19, 32, 16, 20, 28, 27, 36, 2, 14, 16, 3, 27], [19, 32, 16, 20, 28, 27, 36, 2, 14, 16, 3, 27, 35, 9, 14, 16, 3, 27, 36, 5, 14, 16, 23, 27], [19, 32, 16, 20, 28, 27, 36, 2, 14, 16, 3, 27, 35, 9, 14, 16, 3, 27, 36, 5, 14, 16, 23, 27, 19, 24, 16, 20, 27, 19, 8, 11, 16, 20, 28, 27], [19, 32, 16, 20, 28, 27, 36, 2, 14, 16, 3, 27, 35, 9, 14, 16, 3, 27, 36, 5, 14, 16, 23, 27, 19, 24, 16, 20, 27, 19, 8, 11, 16, 20, 28, 27, 36, 2, 14, 16, 10, 27, 36, 8, 11, 16, 17, 28, 27], [19, 32, 16, 20, 28, 27, 36, 2, 14, 16, 3, 27, 35, 9, 14, 16, 3, 27, 36, 5, 14, 16, 23, 27, 19, 24, 16, 20, 27, 19, 8, 11, 16, 20, 28, 27, 36, 2, 14, 16, 10, 27, 36, 8, 11, 16, 17, 28, 27, 35, 5, 14, 16, 6, 27, 36, 24, 16, 17, 27], [25, 8, 11, 16, 20, 28, 27, 19, 12, 14, 16, 3, 27], [25, 8, 11, 16, 20, 28, 27, 19, 12, 14, 16, 3, 27, 19, 12, 22, 14, 16, 1, 27, 25, 9, 14, 16, 10, 27], [25, 8, 11, 16, 20, 28, 27, 19, 12, 14, 16, 3, 27, 19, 12, 22, 14, 16, 1, 27, 25, 9, 14, 16, 10, 27, 25, 9, 14, 16, 1, 27, 25, 26, 33, 16, 20, 27], [25, 8, 11, 16, 20, 28, 27, 19, 12, 14, 16, 3, 27, 19, 12, 22, 14, 16, 1, 27, 25, 9, 14, 16, 10, 27, 25, 9, 14, 16, 1, 27, 25, 26, 33, 16, 20, 27, 25, 32, 16, 20, 28, 27, 36, 12, 14, 16, 18, 27], [25, 8, 11, 16, 20, 28, 27, 19, 12, 14, 16, 3, 27, 19, 12, 22, 14, 16, 1, 27, 25, 9, 14, 16, 10, 27, 25, 9, 14, 16, 1, 27, 25, 26, 33, 16, 20, 27, 25, 32, 16, 20, 28, 27, 36, 12, 14, 16, 18, 27, 36, 12, 14, 16, 6, 27, 19, 2, 14, 16, 6, 27], [35, 21, 16, 17, 28, 27, 36, 2, 14, 16, 10, 27], [35, 21, 16, 17, 28, 27, 36, 2, 14, 16, 10, 27, 19, 21, 16, 29, 28, 27, 35, 31, 16, 17, 28, 27], [35, 21, 16, 17, 28, 27, 36, 2, 14, 16, 10, 27, 19, 21, 16, 29, 28, 27, 35, 31, 16, 17, 28, 27, 36, 2, 14, 16, 6, 27, 19, 12, 14, 16, 6, 27], [35, 21, 16, 17, 28, 27, 36, 2, 14, 16, 10, 27, 19, 21, 16, 29, 28, 27, 35, 31, 16, 17, 28, 27, 36, 2, 14, 16, 6, 27, 19, 12, 14, 16, 6, 27, 35, 8, 11, 16, 17, 28, 27, 19, 26, 33, 16, 29, 27], [35, 21, 16, 17, 28, 27, 36, 2, 14, 16, 10, 27, 19, 21, 16, 29, 28, 27, 35, 31, 16, 17, 28, 27, 36, 2, 14, 16, 6, 27, 19, 12, 14, 16, 6, 27, 35, 8, 11, 16, 17, 28, 27, 19, 26, 33, 16, 29, 27, 35, 31, 16, 17, 27, 19, 8, 11, 16, 17, 28, 27], [35, 12, 14, 16, 18, 27, 19, 21, 16, 17, 28, 27], [35, 12, 14, 16, 18, 27, 19, 21, 16, 17, 28, 27, 19, 5, 14, 16, 6, 27, 36, 4, 16, 29, 28, 27], [35, 12, 14, 16, 18, 27, 19, 21, 16, 17, 28, 27, 19, 5, 14, 16, 6, 27, 36, 4, 16, 29, 28, 27, 36, 2, 14, 16, 6, 27, 36, 26, 33, 16, 29, 27], [35, 12, 14, 16, 18, 27, 19, 21, 16, 17, 28, 27, 19, 5, 14, 16, 6, 27, 36, 4, 16, 29, 28, 27, 36, 2, 14, 16, 6, 27, 36, 26, 33, 16, 29, 27, 35, 2, 14, 16, 6, 27, 35, 8, 11, 16, 29, 28, 27], [35, 12, 14, 16, 18, 27, 19, 21, 16, 17, 28, 27, 19, 5, 14, 16, 6, 27, 36, 4, 16, 29, 28, 27, 36, 2, 14, 16, 6, 27, 36, 26, 33, 16, 29, 27, 35, 2, 14, 16, 6, 27, 35, 8, 11, 16, 29, 28, 27, 25, 21, 16, 20, 28, 27, 25, 5, 14, 16, 18, 27], [25, 5, 14, 16, 23, 27, 19, 9, 14, 16, 3, 27], [25, 5, 14, 16, 23, 27, 19, 9, 14, 16, 3, 27, 35, 12, 22, 14, 16, 1, 27, 25, 5, 14, 16, 18, 27], [25, 5, 14, 16, 23, 27, 19, 9, 14, 16, 3, 27, 35, 12, 22, 14, 16, 1, 27, 25, 5, 14, 16, 18, 27, 35, 2, 14, 16, 10, 27, 35, 21, 16, 17, 28, 27], [25, 5, 14, 16, 23, 27, 19, 9, 14, 16, 3, 27, 35, 12, 22, 14, 16, 1, 27, 25, 5, 14, 16, 18, 27, 35, 2, 14, 16, 10, 27, 35, 21, 16, 17, 28, 27, 25, 9, 14, 16, 1, 27, 36, 12, 22, 14, 16, 10, 27], [25, 5, 14, 16, 23, 27, 19, 9, 14, 16, 3, 27, 35, 12, 22, 14, 16, 1, 27, 25, 5, 14, 16, 18, 27, 35, 2, 14, 16, 10, 27, 35, 21, 16, 17, 28, 27, 25, 9, 14, 16, 1, 27, 36, 12, 22, 14, 16, 10, 27, 35, 30, 16, 17, 27, 35, 12, 22, 14, 16, 6, 27], [36, 2, 14, 16, 6, 27, 19, 12, 14, 16, 6, 27], [36, 2, 14, 16, 6, 27, 19, 12, 14, 16, 6, 27, 36, 8, 11, 16, 20, 28, 27, 36, 5, 14, 16, 18, 27], [36, 2, 14, 16, 6, 27, 19, 12, 14, 16, 6, 27, 36, 8, 11, 16, 20, 28, 27, 36, 5, 14, 16, 18, 27, 36, 12, 22, 14, 16, 23, 27, 25, 21, 16, 17, 28, 27], [36, 2, 14, 16, 6, 27, 19, 12, 14, 16, 6, 27, 36, 8, 11, 16, 20, 28, 27, 36, 5, 14, 16, 18, 27, 36, 12, 22, 14, 16, 23, 27, 25, 21, 16, 17, 28, 27, 35, 2, 14, 16, 23, 27, 19, 21, 16, 29, 28, 27], [36, 2, 14, 16, 6, 27, 19, 12, 14, 16, 6, 27, 36, 8, 11, 16, 20, 28, 27, 36, 5, 14, 16, 18, 27, 36, 12, 22, 14, 16, 23, 27, 25, 21, 16, 17, 28, 27, 35, 2, 14, 16, 23, 27, 19, 21, 16, 29, 28, 27, 25, 30, 16, 17, 27, 19, 30, 16, 29, 27], [36, 21, 16, 17, 28, 27, 25, 9, 14, 16, 3, 27], [36, 21, 16, 17, 28, 27, 25, 9, 14, 16, 3, 27, 25, 32, 16, 20, 28, 27, 19, 9, 14, 16, 3, 27], [36, 21, 16, 17, 28, 27, 25, 9, 14, 16, 3, 27, 25, 32, 16, 20, 28, 27, 19, 9, 14, 16, 3, 27, 35, 12, 14, 16, 3, 27, 36, 30, 16, 17, 27], [36, 21, 16, 17, 28, 27, 25, 9, 14, 16, 3, 27, 25, 32, 16, 20, 28, 27, 19, 9, 14, 16, 3, 27, 35, 12, 14, 16, 3, 27, 36, 30, 16, 17, 27, 36, 9, 14, 16, 3, 27, 25, 31, 16, 20, 27], [36, 21, 16, 17, 28, 27, 25, 9, 14, 16, 3, 27, 25, 32, 16, 20, 28, 27, 19, 9, 14, 16, 3, 27, 35, 12, 14, 16, 3, 27, 36, 30, 16, 17, 27, 36, 9, 14, 16, 3, 27, 25, 31, 16, 20, 27, 19, 2, 14, 16, 1, 27, 19, 12, 14, 16, 3, 27], [25, 2, 14, 16, 3, 27, 36, 2, 14, 16, 6, 27], [25, 2, 14, 16, 3, 27, 36, 2, 14, 16, 6, 27, 19, 2, 14, 16, 6, 27, 25, 9, 14, 16, 10, 27], [25, 2, 14, 16, 3, 27, 36, 2, 14, 16, 6, 27, 19, 2, 14, 16, 6, 27, 25, 9, 14, 16, 10, 27, 36, 5, 14, 16, 1, 27, 25, 12, 22, 14, 16, 18, 27], [25, 2, 14, 16, 3, 27, 36, 2, 14, 16, 6, 27, 19, 2, 14, 16, 6, 27, 25, 9, 14, 16, 10, 27, 36, 5, 14, 16, 1, 27, 25, 12, 22, 14, 16, 18, 27, 19, 9, 14, 16, 1, 27, 25, 2, 14, 16, 23, 27], [25, 2, 14, 16, 3, 27, 36, 2, 14, 16, 6, 27, 19, 2, 14, 16, 6, 27, 25, 9, 14, 16, 10, 27, 36, 5, 14, 16, 1, 27, 25, 12, 22, 14, 16, 18, 27, 19, 9, 14, 16, 1, 27, 25, 2, 14, 16, 23, 27, 36, 4, 16, 29, 28, 27, 35, 12, 22, 14, 16, 6, 27], [19, 12, 14, 16, 18, 27, 36, 2, 14, 16, 18, 27], [19, 12, 14, 16, 18, 27, 36, 2, 14, 16, 18, 27, 25, 5, 14, 16, 3, 27, 36, 12, 22, 14, 16, 10, 27], [19, 12, 14, 16, 18, 27, 36, 2, 14, 16, 18, 27, 25, 5, 14, 16, 3, 27, 36, 12, 22, 14, 16, 10, 27, 36, 2, 14, 16, 3, 27, 36, 12, 14, 16, 23, 27], [19, 12, 14, 16, 18, 27, 36, 2, 14, 16, 18, 27, 25, 5, 14, 16, 3, 27, 36, 12, 22, 14, 16, 10, 27, 36, 2, 14, 16, 3, 27, 36, 12, 14, 16, 23, 27, 35, 5, 14, 16, 10, 27, 25, 12, 22, 14, 16, 18, 27], [19, 12, 14, 16, 18, 27, 36, 2, 14, 16, 18, 27, 25, 5, 14, 16, 3, 27, 36, 12, 22, 14, 16, 10, 27, 36, 2, 14, 16, 3, 27, 36, 12, 14, 16, 23, 27, 35, 5, 14, 16, 10, 27, 25, 12, 22, 14, 16, 18, 27, 36, 12, 22, 14, 16, 3, 27, 19, 5, 14, 16, 10, 27], [35, 12, 22, 14, 16, 23, 27, 35, 4, 16, 17, 28, 27], [35, 12, 22, 14, 16, 23, 27, 35, 4, 16, 17, 28, 27, 35, 12, 14, 16, 6, 27, 25, 21, 16, 20, 28, 27], [35, 12, 22, 14, 16, 23, 27, 35, 4, 16, 17, 28, 27, 35, 12, 14, 16, 6, 27, 25, 21, 16, 20, 28, 27, 35, 12, 14, 16, 1, 27, 19, 4, 16, 29, 28, 27], [35, 12, 22, 14, 16, 23, 27, 35, 4, 16, 17, 28, 27, 35, 12, 14, 16, 6, 27, 25, 21, 16, 20, 28, 27, 35, 12, 14, 16, 1, 27, 19, 4, 16, 29, 28, 27, 25, 9, 14, 16, 6, 27, 35, 5, 14, 16, 18, 27], [35, 12, 22, 14, 16, 23, 27, 35, 4, 16, 17, 28, 27, 35, 12, 14, 16, 6, 27, 25, 21, 16, 20, 28, 27, 35, 12, 14, 16, 1, 27, 19, 4, 16, 29, 28, 27, 25, 9, 14, 16, 6, 27, 35, 5, 14, 16, 18, 27, 35, 31, 16, 17, 27, 25, 24, 16, 20, 27], [36, 12, 22, 14, 16, 6, 27, 25, 9, 14, 16, 6, 27], [36, 12, 22, 14, 16, 6, 27, 25, 9, 14, 16, 6, 27, 36, 9, 14, 16, 1, 27, 36, 12, 14, 16, 6, 27], [36, 12, 22, 14, 16, 6, 27, 25, 9, 14, 16, 6, 27, 36, 9, 14, 16, 1, 27, 36, 12, 14, 16, 6, 27, 35, 9, 14, 16, 1, 27, 25, 2, 14, 16, 18, 27], [36, 12, 22, 14, 16, 6, 27, 25, 9, 14, 16, 6, 27, 36, 9, 14, 16, 1, 27, 36, 12, 14, 16, 6, 27, 35, 9, 14, 16, 1, 27, 25, 2, 14, 16, 18, 27, 36, 9, 14, 16, 3, 27, 36, 8, 11, 16, 29, 28, 27], [36, 12, 22, 14, 16, 6, 27, 25, 9, 14, 16, 6, 27, 36, 9, 14, 16, 1, 27, 36, 12, 14, 16, 6, 27, 35, 9, 14, 16, 1, 27, 25, 2, 14, 16, 18, 27, 36, 9, 14, 16, 3, 27, 36, 8, 11, 16, 29, 28, 27, 36, 31, 16, 29, 28, 27, 35, 12, 22, 14, 16, 18, 27], [36, 2, 14, 16, 1, 27, 36, 2, 14, 16, 23, 27], [36, 2, 14, 16, 1, 27, 36, 2, 14, 16, 23, 27, 19, 12, 14, 16, 6, 27, 19, 9, 14, 16, 10, 27], [36, 2, 14, 16, 1, 27, 36, 2, 14, 16, 23, 27, 19, 12, 14, 16, 6, 27, 19, 9, 14, 16, 10, 27, 19, 12, 14, 16, 3, 27, 35, 2, 14, 16, 18, 27], [36, 2, 14, 16, 1, 27, 36, 2, 14, 16, 23, 27, 19, 12, 14, 16, 6, 27, 19, 9, 14, 16, 10, 27, 19, 12, 14, 16, 3, 27, 35, 2, 14, 16, 18, 27, 35, 5, 14, 16, 1, 27, 25, 9, 14, 16, 18, 27], [36, 2, 14, 16, 1, 27, 36, 2, 14, 16, 23, 27, 19, 12, 14, 16, 6, 27, 19, 9, 14, 16, 10, 27, 19, 12, 14, 16, 3, 27, 35, 2, 14, 16, 18, 27, 35, 5, 14, 16, 1, 27, 25, 9, 14, 16, 18, 27, 19, 12, 22, 14, 16, 10, 27, 35, 12, 22, 14, 16, 10, 27], [35, 4, 16, 20, 28, 27, 19, 12, 14, 16, 23, 27], [35, 4, 16, 20, 28, 27, 19, 12, 14, 16, 23, 27, 35, 5, 14, 16, 1, 27, 19, 12, 22, 14, 16, 10, 27], [35, 4, 16, 20, 28, 27, 19, 12, 14, 16, 23, 27, 35, 5, 14, 16, 1, 27, 19, 12, 22, 14, 16, 10, 27, 19, 32, 16, 17, 28, 27, 25, 5, 14, 16, 23, 27], [35, 4, 16, 20, 28, 27, 19, 12, 14, 16, 23, 27, 35, 5, 14, 16, 1, 27, 19, 12, 22, 14, 16, 10, 27, 19, 32, 16, 17, 28, 27, 25, 5, 14, 16, 23, 27, 35, 12, 14, 16, 23, 27, 36, 12, 22, 14, 16, 10, 27], [35, 4, 16, 20, 28, 27, 19, 12, 14, 16, 23, 27, 35, 5, 14, 16, 1, 27, 19, 12, 22, 14, 16, 10, 27, 19, 32, 16, 17, 28, 27, 25, 5, 14, 16, 23, 27, 35, 12, 14, 16, 23, 27, 36, 12, 22, 14, 16, 10, 27, 19, 12, 22, 14, 16, 18, 27, 35, 24, 16, 20, 27], [19, 12, 22, 14, 16, 3, 27, 25, 12, 22, 14, 16, 1, 27], [19, 12, 22, 14, 16, 3, 27, 25, 12, 22, 14, 16, 1, 27, 25, 8, 11, 16, 17, 28, 27, 25, 26, 33, 16, 17, 27], [19, 12, 22, 14, 16, 3, 27, 25, 12, 22, 14, 16, 1, 27, 25, 8, 11, 16, 17, 28, 27, 25, 26, 33, 16, 17, 27, 25, 8, 11, 16, 17, 28, 27, 25, 21, 16, 29, 28, 27], [19, 12, 22, 14, 16, 3, 27, 25, 12, 22, 14, 16, 1, 27, 25, 8, 11, 16, 17, 28, 27, 25, 26, 33, 16, 17, 27, 25, 8, 11, 16, 17, 28, 27, 25, 21, 16, 29, 28, 27, 19, 12, 22, 14, 16, 1, 27, 35, 2, 14, 16, 3, 27], [19, 12, 22, 14, 16, 3, 27, 25, 12, 22, 14, 16, 1, 27, 25, 8, 11, 16, 17, 28, 27, 25, 26, 33, 16, 17, 27, 25, 8, 11, 16, 17, 28, 27, 25, 21, 16, 29, 28, 27, 19, 12, 22, 14, 16, 1, 27, 35, 2, 14, 16, 3, 27, 35, 12, 14, 16, 6, 27, 19, 12, 22, 14, 16, 6, 27], [19, 2, 14, 16, 10, 27, 19, 12, 14, 16, 18, 27], [19, 2, 14, 16, 10, 27, 19, 12, 14, 16, 18, 27, 35, 12, 22, 14, 16, 3, 27, 25, 9, 14, 16, 3, 27], [19, 2, 14, 16, 10, 27, 19, 12, 14, 16, 18, 27, 35, 12, 22, 14, 16, 3, 27, 25, 9, 14, 16, 3, 27, 25, 12, 14, 16, 1, 27, 19, 32, 16, 20, 28, 27], [19, 2, 14, 16, 10, 27, 19, 12, 14, 16, 18, 27, 35, 12, 22, 14, 16, 3, 27, 25, 9, 14, 16, 3, 27, 25, 12, 14, 16, 1, 27, 19, 32, 16, 20, 28, 27, 19, 2, 14, 16, 23, 27, 19, 2, 14, 16, 3, 27], [19, 2, 14, 16, 10, 27, 19, 12, 14, 16, 18, 27, 35, 12, 22, 14, 16, 3, 27, 25, 9, 14, 16, 3, 27, 25, 12, 14, 16, 1, 27, 19, 32, 16, 20, 28, 27, 19, 2, 14, 16, 23, 27, 19, 2, 14, 16, 3, 27, 36, 9, 14, 16, 23, 27, 36, 9, 14, 16, 10, 27], [25, 21, 16, 20, 28, 27, 25, 24, 16, 20, 27, 36, 4, 16, 20, 28, 27, 19, 32, 16, 17, 28, 27, 36, 5, 14, 16, 6, 27, 19, 31, 16, 17, 28, 27], [25, 21, 16, 20, 28, 27, 25, 24, 16, 20, 27, 36, 4, 16, 20, 28, 27, 19, 32, 16, 17, 28, 27, 36, 5, 14, 16, 6, 27, 19, 31, 16, 17, 28, 27, 36, 24, 16, 20, 27, 35, 5, 14, 16, 23, 27], [25, 21, 16, 20, 28, 27, 25, 24, 16, 20, 27, 36, 4, 16, 20, 28, 27, 19, 32, 16, 17, 28, 27, 36, 5, 14, 16, 6, 27, 19, 31, 16, 17, 28, 27, 36, 24, 16, 20, 27, 35, 5, 14, 16, 23, 27, 19, 8, 11, 16, 17, 28, 27, 36, 5, 14, 16, 23, 27], [25, 21, 16, 20, 28, 27, 25, 24, 16, 20, 27, 36, 4, 16, 20, 28, 27, 19, 32, 16, 17, 28, 27, 36, 5, 14, 16, 6, 27, 19, 31, 16, 17, 28, 27, 36, 24, 16, 20, 27, 35, 5, 14, 16, 23, 27, 19, 8, 11, 16, 17, 28, 27, 36, 5, 14, 16, 23, 27, 35, 2, 14, 16, 1, 27, 35, 5, 14, 16, 18, 27], [25, 21, 16, 20, 28, 27, 25, 24, 16, 20, 27, 36, 4, 16, 20, 28, 27, 19, 32, 16, 17, 28, 27, 36, 5, 14, 16, 6, 27, 19, 31, 16, 17, 28, 27, 36, 24, 16, 20, 27, 35, 5, 14, 16, 23, 27, 19, 8, 11, 16, 17, 28, 27, 36, 5, 14, 16, 23, 27, 35, 2, 14, 16, 1, 27, 35, 5, 14, 16, 18, 27, 35, 5, 14, 16, 1, 27, 25, 12, 22, 14, 16, 6, 27], [19, 9, 14, 16, 23, 27, 35, 5, 14, 16, 6, 27], [19, 9, 14, 16, 23, 27, 35, 5, 14, 16, 6, 27, 36, 9, 14, 16, 18, 27, 19, 32, 16, 20, 28, 27], [19, 9, 14, 16, 23, 27, 35, 5, 14, 16, 6, 27, 36, 9, 14, 16, 18, 27, 19, 32, 16, 20, 28, 27, 25, 12, 14, 16, 3, 27, 19, 30, 16, 20, 28, 27], [19, 9, 14, 16, 23, 27, 35, 5, 14, 16, 6, 27, 36, 9, 14, 16, 18, 27, 19, 32, 16, 20, 28, 27, 25, 12, 14, 16, 3, 27, 19, 30, 16, 20, 28, 27, 19, 8, 11, 16, 20, 28, 27, 19, 24, 16, 20, 27], [19, 9, 14, 16, 23, 27, 35, 5, 14, 16, 6, 27, 36, 9, 14, 16, 18, 27, 19, 32, 16, 20, 28, 27, 25, 12, 14, 16, 3, 27, 19, 30, 16, 20, 28, 27, 19, 8, 11, 16, 20, 28, 27, 19, 24, 16, 20, 27, 19, 4, 16, 20, 28, 27, 25, 2, 14, 16, 23, 27], [25, 12, 22, 14, 16, 10, 27, 19, 2, 14, 16, 18, 27], [25, 12, 22, 14, 16, 10, 27, 19, 2, 14, 16, 18, 27, 19, 21, 16, 17, 28, 27, 36, 12, 14, 16, 18, 27], [25, 12, 22, 14, 16, 10, 27, 19, 2, 14, 16, 18, 27, 19, 21, 16, 17, 28, 27, 36, 12, 14, 16, 18, 27, 35, 9, 14, 16, 18, 27, 36, 2, 14, 16, 6, 27], [25, 12, 22, 14, 16, 10, 27, 19, 2, 14, 16, 18, 27, 19, 21, 16, 17, 28, 27, 36, 12, 14, 16, 18, 27, 35, 9, 14, 16, 18, 27, 36, 2, 14, 16, 6, 27, 36, 12, 22, 14, 16, 23, 27, 19, 9, 14, 16, 23, 27], [25, 12, 22, 14, 16, 10, 27, 19, 2, 14, 16, 18, 27, 19, 21, 16, 17, 28, 27, 36, 12, 14, 16, 18, 27, 35, 9, 14, 16, 18, 27, 36, 2, 14, 16, 6, 27, 36, 12, 22, 14, 16, 23, 27, 19, 9, 14, 16, 23, 27, 36, 12, 22, 14, 16, 18, 27, 19, 12, 22, 14, 16, 3, 27], [25, 21, 16, 17, 28, 27, 25, 9, 14, 16, 18, 27], [25, 21, 16, 17, 28, 27, 25, 9, 14, 16, 18, 27, 36, 12, 22, 14, 16, 23, 27, 35, 32, 16, 20, 28, 27], [25, 21, 16, 17, 28, 27, 25, 9, 14, 16, 18, 27, 36, 12, 22, 14, 16, 23, 27, 35, 32, 16, 20, 28, 27, 35, 24, 16, 20, 27, 36, 5, 14, 16, 1, 27], [25, 21, 16, 17, 28, 27, 25, 9, 14, 16, 18, 27, 36, 12, 22, 14, 16, 23, 27, 35, 32, 16, 20, 28, 27, 35, 24, 16, 20, 27, 36, 5, 14, 16, 1, 27, 35, 21, 16, 20, 28, 27, 25, 31, 16, 17, 27], [25, 21, 16, 17, 28, 27, 25, 9, 14, 16, 18, 27, 36, 12, 22, 14, 16, 23, 27, 35, 32, 16, 20, 28, 27, 35, 24, 16, 20, 27, 36, 5, 14, 16, 1, 27, 35, 21, 16, 20, 28, 27, 25, 31, 16, 17, 27, 35, 4, 16, 17, 28, 27, 19, 2, 14, 16, 6, 27], [36, 5, 14, 16, 23, 27, 35, 2, 14, 16, 6, 27], [36, 5, 14, 16, 23, 27, 35, 2, 14, 16, 6, 27, 35, 21, 16, 17, 28, 27, 25, 2, 14, 16, 3, 27], [36, 5, 14, 16, 23, 27, 35, 2, 14, 16, 6, 27, 35, 21, 16, 17, 28, 27, 25, 2, 14, 16, 3, 27, 36, 12, 14, 16, 1, 27, 35, 26, 33, 16, 17, 27], [36, 5, 14, 16, 23, 27, 35, 2, 14, 16, 6, 27, 35, 21, 16, 17, 28, 27, 25, 2, 14, 16, 3, 27, 36, 12, 14, 16, 1, 27, 35, 26, 33, 16, 17, 27, 36, 12, 22, 14, 16, 6, 27, 36, 32, 16, 17, 28, 27], [36, 5, 14, 16, 23, 27, 35, 2, 14, 16, 6, 27, 35, 21, 16, 17, 28, 27, 25, 2, 14, 16, 3, 27, 36, 12, 14, 16, 1, 27, 35, 26, 33, 16, 17, 27, 36, 12, 22, 14, 16, 6, 27, 36, 32, 16, 17, 28, 27, 36, 5, 14, 16, 1, 27, 36, 5, 14, 16, 23, 27], [19, 21, 16, 20, 28, 27, 19, 30, 16, 20, 27, 36, 2, 14, 16, 10, 27, 35, 9, 14, 16, 3, 27], [19, 21, 16, 20, 28, 27, 19, 30, 16, 20, 27, 36, 2, 14, 16, 10, 27, 35, 9, 14, 16, 3, 27, 36, 2, 14, 16, 6, 27, 19, 21, 16, 20, 28, 27], [19, 21, 16, 20, 28, 27, 19, 30, 16, 20, 27, 36, 2, 14, 16, 10, 27, 35, 9, 14, 16, 3, 27, 36, 2, 14, 16, 6, 27, 19, 21, 16, 20, 28, 27, 36, 9, 14, 16, 23, 27, 36, 21, 16, 17, 28, 27], [19, 21, 16, 20, 28, 27, 19, 30, 16, 20, 27, 36, 2, 14, 16, 10, 27, 35, 9, 14, 16, 3, 27, 36, 2, 14, 16, 6, 27, 19, 21, 16, 20, 28, 27, 36, 9, 14, 16, 23, 27, 36, 21, 16, 17, 28, 27, 36, 12, 14, 16, 18, 27, 25, 9, 14, 16, 23, 27], [19, 21, 16, 20, 28, 27, 19, 30, 16, 20, 27, 36, 2, 14, 16, 10, 27, 35, 9, 14, 16, 3, 27, 36, 2, 14, 16, 6, 27, 19, 21, 16, 20, 28, 27, 36, 9, 14, 16, 23, 27, 36, 21, 16, 17, 28, 27, 36, 12, 14, 16, 18, 27, 25, 9, 14, 16, 23, 27, 19, 26, 33, 16, 20, 27, 19, 5, 14, 16, 3, 27], [19, 12, 14, 16, 10, 27, 19, 9, 14, 16, 6, 27], [19, 12, 14, 16, 10, 27, 19, 9, 14, 16, 6, 27, 19, 2, 14, 16, 1, 27, 36, 8, 11, 16, 20, 28, 27], [19, 12, 14, 16, 10, 27, 19, 9, 14, 16, 6, 27, 19, 2, 14, 16, 1, 27, 36, 8, 11, 16, 20, 28, 27, 35, 5, 14, 16, 1, 27, 36, 9, 14, 16, 3, 27], [19, 12, 14, 16, 10, 27, 19, 9, 14, 16, 6, 27, 19, 2, 14, 16, 1, 27, 36, 8, 11, 16, 20, 28, 27, 35, 5, 14, 16, 1, 27, 36, 9, 14, 16, 3, 27, 25, 5, 14, 16, 23, 27, 25, 12, 14, 16, 6, 27], [19, 12, 14, 16, 10, 27, 19, 9, 14, 16, 6, 27, 19, 2, 14, 16, 1, 27, 36, 8, 11, 16, 20, 28, 27, 35, 5, 14, 16, 1, 27, 36, 9, 14, 16, 3, 27, 25, 5, 14, 16, 23, 27, 25, 12, 14, 16, 6, 27, 35, 12, 14, 16, 10, 27, 36, 24, 16, 20, 28, 27], [36, 12, 22, 14, 16, 18, 27, 25, 9, 14, 16, 6, 27], [36, 12, 22, 14, 16, 18, 27, 25, 9, 14, 16, 6, 27, 19, 12, 22, 14, 16, 10, 27, 35, 9, 14, 16, 18, 27], [36, 12, 22, 14, 16, 18, 27, 25, 9, 14, 16, 6, 27, 19, 12, 22, 14, 16, 10, 27, 35, 9, 14, 16, 18, 27, 25, 12, 14, 16, 18, 27, 19, 12, 14, 16, 1, 27], [36, 12, 22, 14, 16, 18, 27, 25, 9, 14, 16, 6, 27, 19, 12, 22, 14, 16, 10, 27, 35, 9, 14, 16, 18, 27, 25, 12, 14, 16, 18, 27, 19, 12, 14, 16, 1, 27, 19, 21, 16, 20, 28, 27, 19, 24, 16, 20, 27], [36, 12, 22, 14, 16, 18, 27, 25, 9, 14, 16, 6, 27, 19, 12, 22, 14, 16, 10, 27, 35, 9, 14, 16, 18, 27, 25, 12, 14, 16, 18, 27, 19, 12, 14, 16, 1, 27, 19, 21, 16, 20, 28, 27, 19, 24, 16, 20, 27, 25, 2, 14, 16, 10, 27, 19, 12, 14, 16, 3, 27], [35, 12, 14, 16, 18, 27, 36, 5, 14, 16, 23, 27], [35, 12, 14, 16, 18, 27, 36, 5, 14, 16, 23, 27, 19, 2, 14, 16, 18, 27, 19, 12, 14, 16, 1, 27], [35, 12, 14, 16, 18, 27, 36, 5, 14, 16, 23, 27, 19, 2, 14, 16, 18, 27, 19, 12, 14, 16, 1, 27, 35, 5, 14, 16, 23, 27, 35, 12, 22, 14, 16, 1, 27], [35, 12, 14, 16, 18, 27, 36, 5, 14, 16, 23, 27, 19, 2, 14, 16, 18, 27, 19, 12, 14, 16, 1, 27, 35, 5, 14, 16, 23, 27, 35, 12, 22, 14, 16, 1, 27, 36, 32, 16, 20, 28, 27, 25, 12, 14, 16, 1, 27], [35, 12, 14, 16, 18, 27, 36, 5, 14, 16, 23, 27, 19, 2, 14, 16, 18, 27, 19, 12, 14, 16, 1, 27, 35, 5, 14, 16, 23, 27, 35, 12, 22, 14, 16, 1, 27, 36, 32, 16, 20, 28, 27, 25, 12, 14, 16, 1, 27, 25, 5, 14, 16, 10, 27, 35, 12, 14, 16, 10, 27], [36, 12, 14, 16, 23, 27, 19, 2, 14, 16, 23, 27], [36, 12, 14, 16, 23, 27, 19, 2, 14, 16, 23, 27, 19, 5, 14, 16, 1, 27, 19, 12, 14, 16, 3, 27], [36, 12, 14, 16, 23, 27, 19, 2, 14, 16, 23, 27, 19, 5, 14, 16, 1, 27, 19, 12, 14, 16, 3, 27, 19, 4, 16, 20, 28, 27, 35, 9, 14, 16, 23, 27], [36, 12, 14, 16, 23, 27, 19, 2, 14, 16, 23, 27, 19, 5, 14, 16, 1, 27, 19, 12, 14, 16, 3, 27, 19, 4, 16, 20, 28, 27, 35, 9, 14, 16, 23, 27, 35, 12, 22, 14, 16, 18, 27, 19, 24, 16, 20, 27], [36, 12, 14, 16, 23, 27, 19, 2, 14, 16, 23, 27, 19, 5, 14, 16, 1, 27, 19, 12, 14, 16, 3, 27, 19, 4, 16, 20, 28, 27, 35, 9, 14, 16, 23, 27, 35, 12, 22, 14, 16, 18, 27, 19, 24, 16, 20, 27, 19, 2, 14, 16, 1, 27, 25, 9, 14, 16, 18, 27], [25, 9, 14, 16, 3, 27, 25, 8, 11, 16, 17, 28, 27], [25, 9, 14, 16, 3, 27, 25, 8, 11, 16, 17, 28, 27, 35, 4, 16, 20, 28, 27, 35, 24, 16, 20, 27], [25, 9, 14, 16, 3, 27, 25, 8, 11, 16, 17, 28, 27, 35, 4, 16, 20, 28, 27, 35, 24, 16, 20, 27, 19, 2, 14, 16, 18, 27, 35, 12, 14, 16, 6, 27], [25, 9, 14, 16, 3, 27, 25, 8, 11, 16, 17, 28, 27, 35, 4, 16, 20, 28, 27, 35, 24, 16, 20, 27, 19, 2, 14, 16, 18, 27, 35, 12, 14, 16, 6, 27, 36, 9, 14, 16, 23, 27, 36, 2, 14, 16, 3, 27], [25, 9, 14, 16, 3, 27, 25, 8, 11, 16, 17, 28, 27, 35, 4, 16, 20, 28, 27, 35, 24, 16, 20, 27, 19, 2, 14, 16, 18, 27, 35, 12, 14, 16, 6, 27, 36, 9, 14, 16, 23, 27, 36, 2, 14, 16, 3, 27, 35, 2, 14, 16, 3, 27, 25, 31, 16, 17, 27], [35, 12, 22, 14, 16, 18, 27, 35, 21, 16, 20, 28, 27], [35, 12, 22, 14, 16, 18, 27, 35, 21, 16, 20, 28, 27, 25, 21, 16, 17, 28, 27, 19, 2, 14, 16, 10, 27], [35, 12, 22, 14, 16, 18, 27, 35, 21, 16, 20, 28, 27, 25, 21, 16, 17, 28, 27, 19, 2, 14, 16, 10, 27, 25, 24, 16, 17, 27, 19, 2, 14, 16, 1, 27], [35, 12, 22, 14, 16, 18, 27, 35, 21, 16, 20, 28, 27, 25, 21, 16, 17, 28, 27, 19, 2, 14, 16, 10, 27, 25, 24, 16, 17, 27, 19, 2, 14, 16, 1, 27, 36, 9, 14, 16, 3, 27, 36, 9, 14, 16, 10, 27], [35, 12, 22, 14, 16, 18, 27, 35, 21, 16, 20, 28, 27, 25, 21, 16, 17, 28, 27, 19, 2, 14, 16, 10, 27, 25, 24, 16, 17, 27, 19, 2, 14, 16, 1, 27, 36, 9, 14, 16, 3, 27, 36, 9, 14, 16, 10, 27, 25, 12, 14, 16, 18, 27, 19, 8, 11, 16, 17, 28, 27], [19, 12, 14, 16, 10, 27, 35, 9, 14, 16, 18, 27], [19, 12, 14, 16, 10, 27, 35, 9, 14, 16, 18, 27, 19, 2, 14, 16, 18, 27, 19, 12, 22, 14, 16, 6, 27], [19, 12, 14, 16, 10, 27, 35, 9, 14, 16, 18, 27, 19, 2, 14, 16, 18, 27, 19, 12, 22, 14, 16, 6, 27, 19, 9, 14, 16, 1, 27, 35, 9, 14, 16, 3, 27], [19, 12, 14, 16, 10, 27, 35, 9, 14, 16, 18, 27, 19, 2, 14, 16, 18, 27, 19, 12, 22, 14, 16, 6, 27, 19, 9, 14, 16, 1, 27, 35, 9, 14, 16, 3, 27, 36, 12, 14, 16, 18, 27, 36, 21, 16, 29, 28, 27], [19, 12, 14, 16, 10, 27, 35, 9, 14, 16, 18, 27, 19, 2, 14, 16, 18, 27, 19, 12, 22, 14, 16, 6, 27, 19, 9, 14, 16, 1, 27, 35, 9, 14, 16, 3, 27, 36, 12, 14, 16, 18, 27, 36, 21, 16, 29, 28, 27, 36, 5, 14, 16, 10, 27, 19, 32, 16, 17, 28, 27], [36, 5, 14, 16, 3, 27, 36, 9, 14, 16, 1, 27], [36, 5, 14, 16, 3, 27, 36, 9, 14, 16, 1, 27, 35, 2, 14, 16, 1, 27, 19, 5, 14, 16, 23, 27], [36, 5, 14, 16, 3, 27, 36, 9, 14, 16, 1, 27, 35, 2, 14, 16, 1, 27, 19, 5, 14, 16, 23, 27, 35, 2, 14, 16, 6, 27, 36, 12, 14, 16, 18, 27], [36, 5, 14, 16, 3, 27, 36, 9, 14, 16, 1, 27, 35, 2, 14, 16, 1, 27, 19, 5, 14, 16, 23, 27, 35, 2, 14, 16, 6, 27, 36, 12, 14, 16, 18, 27, 35, 9, 14, 16, 10, 27, 25, 12, 14, 16, 18, 27], [36, 5, 14, 16, 3, 27, 36, 9, 14, 16, 1, 27, 35, 2, 14, 16, 1, 27, 19, 5, 14, 16, 23, 27, 35, 2, 14, 16, 6, 27, 36, 12, 14, 16, 18, 27, 35, 9, 14, 16, 10, 27, 25, 12, 14, 16, 18, 27, 36, 21, 16, 17, 28, 27, 19, 21, 16, 20, 28, 27], [36, 8, 11, 16, 17, 28, 27, 36, 5, 14, 16, 6, 27], [36, 8, 11, 16, 17, 28, 27, 36, 5, 14, 16, 6, 27, 25, 5, 14, 16, 18, 27, 19, 8, 11, 16, 29, 28, 27], [36, 8, 11, 16, 17, 28, 27, 36, 5, 14, 16, 6, 27, 25, 5, 14, 16, 18, 27, 19, 8, 11, 16, 29, 28, 27, 36, 21, 16, 20, 28, 27, 19, 24, 16, 29, 27], [36, 8, 11, 16, 17, 28, 27, 36, 5, 14, 16, 6, 27, 25, 5, 14, 16, 18, 27, 19, 8, 11, 16, 29, 28, 27, 36, 21, 16, 20, 28, 27, 19, 24, 16, 29, 27, 35, 9, 14, 16, 10, 27, 25, 2, 14, 16, 1, 27], [36, 8, 11, 16, 17, 28, 27, 36, 5, 14, 16, 6, 27, 25, 5, 14, 16, 18, 27, 19, 8, 11, 16, 29, 28, 27, 36, 21, 16, 20, 28, 27, 19, 24, 16, 29, 27, 35, 9, 14, 16, 10, 27, 25, 2, 14, 16, 1, 27, 36, 12, 22, 14, 16, 18, 27, 36, 30, 16, 20, 27], [35, 4, 16, 20, 28, 27, 35, 9, 14, 16, 6, 27], [35, 4, 16, 20, 28, 27, 35, 9, 14, 16, 6, 27, 36, 12, 22, 14, 16, 6, 27, 35, 12, 14, 16, 1, 27], [35, 4, 16, 20, 28, 27, 35, 9, 14, 16, 6, 27, 36, 12, 22, 14, 16, 6, 27, 35, 12, 14, 16, 1, 27, 19, 9, 14, 16, 18, 27, 25, 12, 14, 16, 6, 27], [35, 4, 16, 20, 28, 27, 35, 9, 14, 16, 6, 27, 36, 12, 22, 14, 16, 6, 27, 35, 12, 14, 16, 1, 27, 19, 9, 14, 16, 18, 27, 25, 12, 14, 16, 6, 27, 19, 5, 14, 16, 6, 27, 19, 12, 14, 16, 23, 27], [35, 4, 16, 20, 28, 27, 35, 9, 14, 16, 6, 27, 36, 12, 22, 14, 16, 6, 27, 35, 12, 14, 16, 1, 27, 19, 9, 14, 16, 18, 27, 25, 12, 14, 16, 6, 27, 19, 5, 14, 16, 6, 27, 19, 12, 14, 16, 23, 27, 35, 31, 16, 20, 27, 35, 4, 16, 20, 28, 27], [36, 8, 11, 16, 17, 28, 27, 25, 8, 11, 16, 29, 28, 27, 25, 12, 14, 16, 1, 27, 36, 31, 16, 17, 27], [36, 8, 11, 16, 17, 28, 27, 25, 8, 11, 16, 29, 28, 27, 25, 12, 14, 16, 1, 27, 36, 31, 16, 17, 27, 19, 9, 14, 16, 1, 27, 35, 5, 14, 16, 6, 27], [36, 8, 11, 16, 17, 28, 27, 25, 8, 11, 16, 29, 28, 27, 25, 12, 14, 16, 1, 27, 36, 31, 16, 17, 27, 19, 9, 14, 16, 1, 27, 35, 5, 14, 16, 6, 27, 25, 9, 14, 16, 23, 27, 36, 4, 16, 17, 28, 27], [36, 8, 11, 16, 17, 28, 27, 25, 8, 11, 16, 29, 28, 27, 25, 12, 14, 16, 1, 27, 36, 31, 16, 17, 27, 19, 9, 14, 16, 1, 27, 35, 5, 14, 16, 6, 27, 25, 9, 14, 16, 23, 27, 36, 4, 16, 17, 28, 27, 36, 24, 16, 17, 27, 35, 2, 14, 16, 3, 27], [36, 8, 11, 16, 17, 28, 27, 25, 8, 11, 16, 29, 28, 27, 25, 12, 14, 16, 1, 27, 36, 31, 16, 17, 27, 19, 9, 14, 16, 1, 27, 35, 5, 14, 16, 6, 27, 25, 9, 14, 16, 23, 27, 36, 4, 16, 17, 28, 27, 36, 24, 16, 17, 27, 35, 2, 14, 16, 3, 27, 36, 21, 16, 17, 28, 27, 35, 21, 16, 20, 28, 27], [19, 12, 22, 14, 16, 23, 27, 25, 12, 22, 14, 16, 1, 27], [19, 12, 22, 14, 16, 23, 27, 25, 12, 22, 14, 16, 1, 27, 35, 12, 14, 16, 3, 27, 36, 12, 22, 14, 16, 23, 27], [19, 12, 22, 14, 16, 23, 27, 25, 12, 22, 14, 16, 1, 27, 35, 12, 14, 16, 3, 27, 36, 12, 22, 14, 16, 23, 27, 35, 9, 14, 16, 23, 27, 25, 5, 14, 16, 18, 27], [19, 12, 22, 14, 16, 23, 27, 25, 12, 22, 14, 16, 1, 27, 35, 12, 14, 16, 3, 27, 36, 12, 22, 14, 16, 23, 27, 35, 9, 14, 16, 23, 27, 25, 5, 14, 16, 18, 27, 19, 5, 14, 16, 10, 27, 25, 2, 14, 16, 6, 27], [19, 12, 22, 14, 16, 23, 27, 25, 12, 22, 14, 16, 1, 27, 35, 12, 14, 16, 3, 27, 36, 12, 22, 14, 16, 23, 27, 35, 9, 14, 16, 23, 27, 25, 5, 14, 16, 18, 27, 19, 5, 14, 16, 10, 27, 25, 2, 14, 16, 6, 27, 25, 9, 14, 16, 3, 27, 25, 2, 14, 16, 10, 27], [36, 12, 22, 14, 16, 23, 27, 19, 9, 14, 16, 6, 27], [36, 12, 22, 14, 16, 23, 27, 19, 9, 14, 16, 6, 27, 25, 5, 14, 16, 18, 27, 19, 8, 11, 16, 20, 28, 27], [36, 12, 22, 14, 16, 23, 27, 19, 9, 14, 16, 6, 27, 25, 5, 14, 16, 18, 27, 19, 8, 11, 16, 20, 28, 27, 36, 32, 16, 17, 28, 27, 19, 30, 16, 20, 27], [36, 12, 22, 14, 16, 23, 27, 19, 9, 14, 16, 6, 27, 25, 5, 14, 16, 18, 27, 19, 8, 11, 16, 20, 28, 27, 36, 32, 16, 17, 28, 27, 19, 30, 16, 20, 27, 35, 12, 14, 16, 1, 27, 36, 31, 16, 17, 27], [36, 12, 22, 14, 16, 23, 27, 19, 9, 14, 16, 6, 27, 25, 5, 14, 16, 18, 27, 19, 8, 11, 16, 20, 28, 27, 36, 32, 16, 17, 28, 27, 19, 30, 16, 20, 27, 35, 12, 14, 16, 1, 27, 36, 31, 16, 17, 27, 36, 21, 16, 17, 28, 27, 19, 12, 22, 14, 16, 1, 27], [36, 12, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27], [36, 12, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27, 35, 9, 14, 16, 6, 27, 25, 8, 11, 16, 29, 28, 27], [36, 12, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27, 35, 9, 14, 16, 6, 27, 25, 8, 11, 16, 29, 28, 27, 35, 4, 16, 17, 28, 27, 25, 12, 14, 16, 18, 27], [36, 12, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27, 35, 9, 14, 16, 6, 27, 25, 8, 11, 16, 29, 28, 27, 35, 4, 16, 17, 28, 27, 25, 12, 14, 16, 18, 27, 19, 2, 14, 16, 1, 27, 25, 12, 22, 14, 16, 3, 27], [36, 12, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27, 35, 9, 14, 16, 6, 27, 25, 8, 11, 16, 29, 28, 27, 35, 4, 16, 17, 28, 27, 25, 12, 14, 16, 18, 27, 19, 2, 14, 16, 1, 27, 25, 12, 22, 14, 16, 3, 27, 35, 12, 14, 16, 3, 27, 25, 12, 14, 16, 6, 27], [19, 12, 22, 14, 16, 10, 27, 25, 12, 22, 14, 16, 6, 27], [19, 12, 22, 14, 16, 10, 27, 25, 12, 22, 14, 16, 6, 27, 25, 9, 14, 16, 23, 27, 19, 12, 14, 16, 18, 27], [19, 12, 22, 14, 16, 10, 27, 25, 12, 22, 14, 16, 6, 27, 25, 9, 14, 16, 23, 27, 19, 12, 14, 16, 18, 27, 36, 9, 14, 16, 1, 27, 35, 32, 16, 29, 28, 27], [19, 12, 22, 14, 16, 10, 27, 25, 12, 22, 14, 16, 6, 27, 25, 9, 14, 16, 23, 27, 19, 12, 14, 16, 18, 27, 36, 9, 14, 16, 1, 27, 35, 32, 16, 29, 28, 27, 36, 9, 14, 16, 6, 27, 35, 2, 14, 16, 3, 27], [19, 12, 22, 14, 16, 10, 27, 25, 12, 22, 14, 16, 6, 27, 25, 9, 14, 16, 23, 27, 19, 12, 14, 16, 18, 27, 36, 9, 14, 16, 1, 27, 35, 32, 16, 29, 28, 27, 36, 9, 14, 16, 6, 27, 35, 2, 14, 16, 3, 27, 19, 8, 11, 16, 17, 28, 27, 25, 12, 14, 16, 10, 27], [36, 12, 22, 14, 16, 3, 27, 35, 9, 14, 16, 18, 27], [36, 12, 22, 14, 16, 3, 27, 35, 9, 14, 16, 18, 27, 36, 2, 14, 16, 1, 27, 36, 5, 14, 16, 10, 27], [36, 12, 22, 14, 16, 3, 27, 35, 9, 14, 16, 18, 27, 36, 2, 14, 16, 1, 27, 36, 5, 14, 16, 10, 27, 36, 12, 14, 16, 1, 27, 19, 12, 14, 16, 10, 27], [36, 12, 22, 14, 16, 3, 27, 35, 9, 14, 16, 18, 27, 36, 2, 14, 16, 1, 27, 36, 5, 14, 16, 10, 27, 36, 12, 14, 16, 1, 27, 19, 12, 14, 16, 10, 27, 19, 8, 11, 16, 20, 28, 27, 25, 12, 14, 16, 18, 27], [36, 12, 22, 14, 16, 3, 27, 35, 9, 14, 16, 18, 27, 36, 2, 14, 16, 1, 27, 36, 5, 14, 16, 10, 27, 36, 12, 14, 16, 1, 27, 19, 12, 14, 16, 10, 27, 19, 8, 11, 16, 20, 28, 27, 25, 12, 14, 16, 18, 27, 19, 31, 16, 20, 27, 35, 2, 14, 16, 3, 27], [35, 2, 14, 16, 10, 27, 25, 12, 22, 14, 16, 18, 27], [35, 2, 14, 16, 10, 27, 25, 12, 22, 14, 16, 18, 27, 35, 21, 16, 29, 28, 27, 19, 5, 14, 16, 3, 27], [35, 2, 14, 16, 10, 27, 25, 12, 22, 14, 16, 18, 27, 35, 21, 16, 29, 28, 27, 19, 5, 14, 16, 3, 27, 36, 2, 14, 16, 10, 27, 35, 31, 16, 29, 27], [35, 2, 14, 16, 10, 27, 25, 12, 22, 14, 16, 18, 27, 35, 21, 16, 29, 28, 27, 19, 5, 14, 16, 3, 27, 36, 2, 14, 16, 10, 27, 35, 31, 16, 29, 27, 35, 8, 11, 16, 29, 28, 27, 35, 30, 16, 29, 28, 27], [35, 2, 14, 16, 10, 27, 25, 12, 22, 14, 16, 18, 27, 35, 21, 16, 29, 28, 27, 19, 5, 14, 16, 3, 27, 36, 2, 14, 16, 10, 27, 35, 31, 16, 29, 27, 35, 8, 11, 16, 29, 28, 27, 35, 30, 16, 29, 28, 27, 36, 32, 16, 29, 28, 27, 35, 12, 22, 14, 16, 3, 27], [36, 12, 14, 16, 1, 27, 19, 32, 16, 20, 28, 27], [36, 12, 14, 16, 1, 27, 19, 32, 16, 20, 28, 27, 19, 21, 16, 29, 28, 27, 35, 5, 14, 16, 1, 27], [36, 12, 14, 16, 1, 27, 19, 32, 16, 20, 28, 27, 19, 21, 16, 29, 28, 27, 35, 5, 14, 16, 1, 27, 36, 5, 14, 16, 3, 27, 19, 30, 16, 20, 27], [36, 12, 14, 16, 1, 27, 19, 32, 16, 20, 28, 27, 19, 21, 16, 29, 28, 27, 35, 5, 14, 16, 1, 27, 36, 5, 14, 16, 3, 27, 19, 30, 16, 20, 27, 36, 32, 16, 20, 28, 27, 36, 31, 16, 20, 28, 27], [36, 12, 14, 16, 1, 27, 19, 32, 16, 20, 28, 27, 19, 21, 16, 29, 28, 27, 35, 5, 14, 16, 1, 27, 36, 5, 14, 16, 3, 27, 19, 30, 16, 20, 27, 36, 32, 16, 20, 28, 27, 36, 31, 16, 20, 28, 27, 19, 21, 16, 20, 28, 27, 35, 12, 22, 14, 16, 6, 27], [19, 2, 14, 16, 1, 27, 36, 4, 16, 17, 28, 27], [19, 2, 14, 16, 1, 27, 36, 4, 16, 17, 28, 27, 36, 30, 16, 17, 27, 35, 9, 14, 16, 10, 27], [19, 2, 14, 16, 1, 27, 36, 4, 16, 17, 28, 27, 36, 30, 16, 17, 27, 35, 9, 14, 16, 10, 27, 25, 9, 14, 16, 18, 27, 25, 12, 14, 16, 1, 27], [19, 2, 14, 16, 1, 27, 36, 4, 16, 17, 28, 27, 36, 30, 16, 17, 27, 35, 9, 14, 16, 10, 27, 25, 9, 14, 16, 18, 27, 25, 12, 14, 16, 1, 27, 25, 2, 14, 16, 18, 27, 35, 12, 22, 14, 16, 3, 27], [19, 2, 14, 16, 1, 27, 36, 4, 16, 17, 28, 27, 36, 30, 16, 17, 27, 35, 9, 14, 16, 10, 27, 25, 9, 14, 16, 18, 27, 25, 12, 14, 16, 1, 27, 25, 2, 14, 16, 18, 27, 35, 12, 22, 14, 16, 3, 27, 19, 9, 14, 16, 3, 27, 36, 21, 16, 17, 28, 27], [36, 5, 14, 16, 18, 27, 25, 21, 16, 29, 28, 27], [36, 5, 14, 16, 18, 27, 25, 21, 16, 29, 28, 27, 36, 5, 14, 16, 1, 27, 36, 2, 14, 16, 6, 27], [36, 5, 14, 16, 18, 27, 25, 21, 16, 29, 28, 27, 36, 5, 14, 16, 1, 27, 36, 2, 14, 16, 6, 27, 25, 2, 14, 16, 1, 27, 35, 12, 14, 16, 3, 27], [36, 5, 14, 16, 18, 27, 25, 21, 16, 29, 28, 27, 36, 5, 14, 16, 1, 27, 36, 2, 14, 16, 6, 27, 25, 2, 14, 16, 1, 27, 35, 12, 14, 16, 3, 27, 35, 9, 14, 16, 1, 27, 25, 26, 33, 16, 29, 28, 27], [36, 5, 14, 16, 18, 27, 25, 21, 16, 29, 28, 27, 36, 5, 14, 16, 1, 27, 36, 2, 14, 16, 6, 27, 25, 2, 14, 16, 1, 27, 35, 12, 14, 16, 3, 27, 35, 9, 14, 16, 1, 27, 25, 26, 33, 16, 29, 28, 27, 25, 32, 16, 29, 28, 27, 25, 9, 14, 16, 6, 27], [19, 8, 11, 16, 29, 28, 27, 19, 30, 16, 29, 27, 25, 21, 16, 20, 28, 27, 35, 9, 14, 16, 10, 27], [19, 8, 11, 16, 29, 28, 27, 19, 30, 16, 29, 27, 25, 21, 16, 20, 28, 27, 35, 9, 14, 16, 10, 27, 36, 2, 14, 16, 1, 27, 19, 32, 16, 29, 28, 27], [19, 8, 11, 16, 29, 28, 27, 19, 30, 16, 29, 27, 25, 21, 16, 20, 28, 27, 35, 9, 14, 16, 10, 27, 36, 2, 14, 16, 1, 27, 19, 32, 16, 29, 28, 27, 19, 31, 16, 29, 27, 19, 12, 22, 14, 16, 18, 27], [19, 8, 11, 16, 29, 28, 27, 19, 30, 16, 29, 27, 25, 21, 16, 20, 28, 27, 35, 9, 14, 16, 10, 27, 36, 2, 14, 16, 1, 27, 19, 32, 16, 29, 28, 27, 19, 31, 16, 29, 27, 19, 12, 22, 14, 16, 18, 27, 35, 32, 16, 29, 28, 27, 19, 9, 14, 16, 6, 27], [19, 8, 11, 16, 29, 28, 27, 19, 30, 16, 29, 27, 25, 21, 16, 20, 28, 27, 35, 9, 14, 16, 10, 27, 36, 2, 14, 16, 1, 27, 19, 32, 16, 29, 28, 27, 19, 31, 16, 29, 27, 19, 12, 22, 14, 16, 18, 27, 35, 32, 16, 29, 28, 27, 19, 9, 14, 16, 6, 27, 36, 5, 14, 16, 3, 27, 35, 30, 16, 29, 28, 27], [19, 32, 16, 29, 28, 27, 25, 12, 22, 14, 16, 18, 27], [19, 32, 16, 29, 28, 27, 25, 12, 22, 14, 16, 18, 27, 36, 12, 22, 14, 16, 3, 27, 35, 4, 16, 20, 28, 27], [19, 32, 16, 29, 28, 27, 25, 12, 22, 14, 16, 18, 27, 36, 12, 22, 14, 16, 3, 27, 35, 4, 16, 20, 28, 27, 36, 12, 22, 14, 16, 1, 27, 35, 2, 14, 16, 10, 27], [19, 32, 16, 29, 28, 27, 25, 12, 22, 14, 16, 18, 27, 36, 12, 22, 14, 16, 3, 27, 35, 4, 16, 20, 28, 27, 36, 12, 22, 14, 16, 1, 27, 35, 2, 14, 16, 10, 27, 19, 26, 33, 16, 29, 27, 36, 5, 14, 16, 10, 27], [19, 32, 16, 29, 28, 27, 25, 12, 22, 14, 16, 18, 27, 36, 12, 22, 14, 16, 3, 27, 35, 4, 16, 20, 28, 27, 36, 12, 22, 14, 16, 1, 27, 35, 2, 14, 16, 10, 27, 19, 26, 33, 16, 29, 27, 36, 5, 14, 16, 10, 27, 35, 12, 14, 16, 1, 27, 35, 26, 33, 16, 20, 27], [25, 8, 11, 16, 29, 28, 27, 19, 5, 14, 16, 1, 27], [25, 8, 11, 16, 29, 28, 27, 19, 5, 14, 16, 1, 27, 25, 21, 16, 20, 28, 27, 35, 12, 14, 16, 10, 27], [25, 8, 11, 16, 29, 28, 27, 19, 5, 14, 16, 1, 27, 25, 21, 16, 20, 28, 27, 35, 12, 14, 16, 10, 27, 25, 24, 16, 20, 28, 27, 25, 26, 33, 16, 29, 28, 27], [25, 8, 11, 16, 29, 28, 27, 19, 5, 14, 16, 1, 27, 25, 21, 16, 20, 28, 27, 35, 12, 14, 16, 10, 27, 25, 24, 16, 20, 28, 27, 25, 26, 33, 16, 29, 28, 27, 25, 4, 16, 29, 28, 27, 25, 26, 33, 16, 29, 27], [25, 8, 11, 16, 29, 28, 27, 19, 5, 14, 16, 1, 27, 25, 21, 16, 20, 28, 27, 35, 12, 14, 16, 10, 27, 25, 24, 16, 20, 28, 27, 25, 26, 33, 16, 29, 28, 27, 25, 4, 16, 29, 28, 27, 25, 26, 33, 16, 29, 27, 25, 4, 16, 29, 28, 27, 25, 31, 16, 29, 27, 25, 12, 22, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27], [19, 12, 14, 16, 3, 27, 36, 2, 14, 16, 3, 27], [19, 12, 14, 16, 3, 27, 36, 2, 14, 16, 3, 27, 19, 12, 14, 16, 10, 27, 25, 5, 14, 16, 6, 27], [19, 12, 14, 16, 3, 27, 36, 2, 14, 16, 3, 27, 19, 12, 14, 16, 10, 27, 25, 5, 14, 16, 6, 27, 35, 2, 14, 16, 6, 27, 19, 5, 14, 16, 1, 27], [19, 12, 14, 16, 3, 27, 36, 2, 14, 16, 3, 27, 19, 12, 14, 16, 10, 27, 25, 5, 14, 16, 6, 27, 35, 2, 14, 16, 6, 27, 19, 5, 14, 16, 1, 27, 25, 12, 22, 14, 16, 10, 27, 19, 5, 14, 16, 23, 27], [19, 12, 14, 16, 3, 27, 36, 2, 14, 16, 3, 27, 19, 12, 14, 16, 10, 27, 25, 5, 14, 16, 6, 27, 35, 2, 14, 16, 6, 27, 19, 5, 14, 16, 1, 27, 25, 12, 22, 14, 16, 10, 27, 19, 5, 14, 16, 23, 27, 25, 21, 16, 20, 28, 27, 36, 5, 14, 16, 10, 27], [35, 2, 14, 16, 18, 27, 19, 2, 14, 16, 23, 27], [35, 2, 14, 16, 18, 27, 19, 2, 14, 16, 23, 27, 35, 4, 16, 17, 28, 27, 36, 12, 14, 16, 1, 27], [35, 2, 14, 16, 18, 27, 19, 2, 14, 16, 23, 27, 35, 4, 16, 17, 28, 27, 36, 12, 14, 16, 1, 27, 19, 9, 14, 16, 6, 27, 19, 4, 16, 20, 28, 27], [35, 2, 14, 16, 18, 27, 19, 2, 14, 16, 23, 27, 35, 4, 16, 17, 28, 27, 36, 12, 14, 16, 1, 27, 19, 9, 14, 16, 6, 27, 19, 4, 16, 20, 28, 27, 19, 24, 16, 20, 27, 35, 26, 33, 16, 17, 27], [35, 2, 14, 16, 18, 27, 19, 2, 14, 16, 23, 27, 35, 4, 16, 17, 28, 27, 36, 12, 14, 16, 1, 27, 19, 9, 14, 16, 6, 27, 19, 4, 16, 20, 28, 27, 19, 24, 16, 20, 27, 35, 26, 33, 16, 17, 27, 19, 9, 14, 16, 10, 27, 36, 2, 14, 16, 23, 27], [35, 12, 22, 14, 16, 1, 27, 19, 12, 22, 14, 16, 6, 27], [35, 12, 22, 14, 16, 1, 27, 19, 12, 22, 14, 16, 6, 27, 19, 9, 14, 16, 10, 27, 36, 12, 14, 16, 1, 27], [35, 12, 22, 14, 16, 1, 27, 19, 12, 22, 14, 16, 6, 27, 19, 9, 14, 16, 10, 27, 36, 12, 14, 16, 1, 27, 35, 32, 16, 17, 28, 27, 36, 12, 22, 14, 16, 3, 27], [35, 12, 22, 14, 16, 1, 27, 19, 12, 22, 14, 16, 6, 27, 19, 9, 14, 16, 10, 27, 36, 12, 14, 16, 1, 27, 35, 32, 16, 17, 28, 27, 36, 12, 22, 14, 16, 3, 27, 19, 12, 22, 14, 16, 6, 27, 36, 21, 16, 29, 28, 27], [35, 12, 22, 14, 16, 1, 27, 19, 12, 22, 14, 16, 6, 27, 19, 9, 14, 16, 10, 27, 36, 12, 14, 16, 1, 27, 35, 32, 16, 17, 28, 27, 36, 12, 22, 14, 16, 3, 27, 19, 12, 22, 14, 16, 6, 27, 36, 21, 16, 29, 28, 27, 19, 2, 14, 16, 18, 27, 36, 9, 14, 16, 18, 27], [36, 5, 14, 16, 3, 27, 35, 4, 16, 20, 28, 27], [36, 5, 14, 16, 3, 27, 35, 4, 16, 20, 28, 27, 25, 9, 14, 16, 3, 27, 35, 12, 22, 14, 16, 3, 27], [36, 5, 14, 16, 3, 27, 35, 4, 16, 20, 28, 27, 25, 9, 14, 16, 3, 27, 35, 12, 22, 14, 16, 3, 27, 36, 12, 14, 16, 23, 27, 25, 2, 14, 16, 23, 27], [36, 5, 14, 16, 3, 27, 35, 4, 16, 20, 28, 27, 25, 9, 14, 16, 3, 27, 35, 12, 22, 14, 16, 3, 27, 36, 12, 14, 16, 23, 27, 25, 2, 14, 16, 23, 27, 19, 2, 14, 16, 6, 27, 19, 32, 16, 17, 28, 27], [36, 5, 14, 16, 3, 27, 35, 4, 16, 20, 28, 27, 25, 9, 14, 16, 3, 27, 35, 12, 22, 14, 16, 3, 27, 36, 12, 14, 16, 23, 27, 25, 2, 14, 16, 23, 27, 19, 2, 14, 16, 6, 27, 19, 32, 16, 17, 28, 27, 19, 9, 14, 16, 1, 27, 19, 2, 14, 16, 6, 27], [25, 5, 14, 16, 6, 27, 35, 5, 14, 16, 1, 27], [25, 5, 14, 16, 6, 27, 35, 5, 14, 16, 1, 27, 25, 8, 11, 16, 17, 28, 27, 19, 8, 11, 16, 29, 28, 27], [25, 5, 14, 16, 6, 27, 35, 5, 14, 16, 1, 27, 25, 8, 11, 16, 17, 28, 27, 19, 8, 11, 16, 29, 28, 27, 25, 12, 14, 16, 1, 27, 36, 12, 22, 14, 16, 6, 27], [25, 5, 14, 16, 6, 27, 35, 5, 14, 16, 1, 27, 25, 8, 11, 16, 17, 28, 27, 19, 8, 11, 16, 29, 28, 27, 25, 12, 14, 16, 1, 27, 36, 12, 22, 14, 16, 6, 27, 19, 12, 14, 16, 23, 27, 25, 5, 14, 16, 6, 27], [25, 5, 14, 16, 6, 27, 35, 5, 14, 16, 1, 27, 25, 8, 11, 16, 17, 28, 27, 19, 8, 11, 16, 29, 28, 27, 25, 12, 14, 16, 1, 27, 36, 12, 22, 14, 16, 6, 27, 19, 12, 14, 16, 23, 27, 25, 5, 14, 16, 6, 27, 19, 31, 16, 29, 27, 25, 31, 16, 17, 27], [35, 21, 16, 20, 28, 27, 25, 4, 16, 29, 28, 27, 25, 26, 33, 16, 29, 27, 36, 9, 14, 16, 23, 27], [35, 21, 16, 20, 28, 27, 25, 4, 16, 29, 28, 27, 25, 26, 33, 16, 29, 27, 36, 9, 14, 16, 23, 27, 19, 9, 14, 16, 23, 27, 25, 5, 14, 16, 3, 27], [35, 21, 16, 20, 28, 27, 25, 4, 16, 29, 28, 27, 25, 26, 33, 16, 29, 27, 36, 9, 14, 16, 23, 27, 19, 9, 14, 16, 23, 27, 25, 5, 14, 16, 3, 27, 35, 24, 16, 20, 27, 36, 12, 14, 16, 6, 27], [35, 21, 16, 20, 28, 27, 25, 4, 16, 29, 28, 27, 25, 26, 33, 16, 29, 27, 36, 9, 14, 16, 23, 27, 19, 9, 14, 16, 23, 27, 25, 5, 14, 16, 3, 27, 35, 24, 16, 20, 27, 36, 12, 14, 16, 6, 27, 36, 2, 14, 16, 10, 27, 25, 12, 22, 14, 16, 23, 27], [35, 21, 16, 20, 28, 27, 25, 4, 16, 29, 28, 27, 25, 26, 33, 16, 29, 27, 36, 9, 14, 16, 23, 27, 19, 9, 14, 16, 23, 27, 25, 5, 14, 16, 3, 27, 35, 24, 16, 20, 27, 36, 12, 14, 16, 6, 27, 36, 2, 14, 16, 10, 27, 25, 12, 22, 14, 16, 23, 27, 35, 4, 16, 20, 28, 27, 19, 2, 14, 16, 6, 27], [36, 9, 14, 16, 10, 27, 19, 12, 22, 14, 16, 23, 27], [36, 9, 14, 16, 10, 27, 19, 12, 22, 14, 16, 23, 27, 19, 5, 14, 16, 6, 27, 35, 12, 14, 16, 23, 27], [36, 9, 14, 16, 10, 27, 19, 12, 22, 14, 16, 23, 27, 19, 5, 14, 16, 6, 27, 35, 12, 14, 16, 23, 27, 36, 12, 14, 16, 1, 27, 25, 12, 14, 16, 3, 27], [36, 9, 14, 16, 10, 27, 19, 12, 22, 14, 16, 23, 27, 19, 5, 14, 16, 6, 27, 35, 12, 14, 16, 23, 27, 36, 12, 14, 16, 1, 27, 25, 12, 14, 16, 3, 27, 25, 12, 22, 14, 16, 1, 27, 35, 2, 14, 16, 10, 27], [36, 9, 14, 16, 10, 27, 19, 12, 22, 14, 16, 23, 27, 19, 5, 14, 16, 6, 27, 35, 12, 14, 16, 23, 27, 36, 12, 14, 16, 1, 27, 25, 12, 14, 16, 3, 27, 25, 12, 22, 14, 16, 1, 27, 35, 2, 14, 16, 10, 27, 19, 12, 22, 14, 16, 18, 27, 25, 12, 14, 16, 3, 27], [25, 21, 16, 20, 28, 27, 25, 21, 16, 17, 28, 27, 19, 12, 14, 16, 6, 27, 19, 5, 14, 16, 1, 27], [25, 21, 16, 20, 28, 27, 25, 21, 16, 17, 28, 27, 19, 12, 14, 16, 6, 27, 19, 5, 14, 16, 1, 27, 35, 9, 14, 16, 10, 27, 25, 2, 14, 16, 23, 27], [25, 21, 16, 20, 28, 27, 25, 21, 16, 17, 28, 27, 19, 12, 14, 16, 6, 27, 19, 5, 14, 16, 1, 27, 35, 9, 14, 16, 10, 27, 25, 2, 14, 16, 23, 27, 36, 9, 14, 16, 1, 27, 35, 4, 16, 29, 28, 27], [25, 21, 16, 20, 28, 27, 25, 21, 16, 17, 28, 27, 19, 12, 14, 16, 6, 27, 19, 5, 14, 16, 1, 27, 35, 9, 14, 16, 10, 27, 25, 2, 14, 16, 23, 27, 36, 9, 14, 16, 1, 27, 35, 4, 16, 29, 28, 27, 36, 5, 14, 16, 23, 27, 25, 26, 33, 16, 20, 27], [25, 21, 16, 20, 28, 27, 25, 21, 16, 17, 28, 27, 19, 12, 14, 16, 6, 27, 19, 5, 14, 16, 1, 27, 35, 9, 14, 16, 10, 27, 25, 2, 14, 16, 23, 27, 36, 9, 14, 16, 1, 27, 35, 4, 16, 29, 28, 27, 36, 5, 14, 16, 23, 27, 25, 26, 33, 16, 20, 27, 25, 5, 14, 16, 10, 27, 35, 24, 16, 29, 28, 27], [36, 5, 14, 16, 3, 27, 25, 9, 14, 16, 18, 27], [36, 5, 14, 16, 3, 27, 25, 9, 14, 16, 18, 27, 25, 2, 14, 16, 1, 27, 19, 9, 14, 16, 3, 27], [36, 5, 14, 16, 3, 27, 25, 9, 14, 16, 18, 27, 25, 2, 14, 16, 1, 27, 19, 9, 14, 16, 3, 27, 25, 2, 14, 16, 10, 27, 36, 2, 14, 16, 18, 27], [36, 5, 14, 16, 3, 27, 25, 9, 14, 16, 18, 27, 25, 2, 14, 16, 1, 27, 19, 9, 14, 16, 3, 27, 25, 2, 14, 16, 10, 27, 36, 2, 14, 16, 18, 27, 36, 9, 14, 16, 1, 27, 25, 4, 16, 17, 28, 27], [36, 5, 14, 16, 3, 27, 25, 9, 14, 16, 18, 27, 25, 2, 14, 16, 1, 27, 19, 9, 14, 16, 3, 27, 25, 2, 14, 16, 10, 27, 36, 2, 14, 16, 18, 27, 36, 9, 14, 16, 1, 27, 25, 4, 16, 17, 28, 27, 35, 2, 14, 16, 3, 27, 36, 2, 14, 16, 23, 27], [36, 5, 14, 16, 1, 27, 36, 9, 14, 16, 6, 27], [36, 5, 14, 16, 1, 27, 36, 9, 14, 16, 6, 27, 36, 5, 14, 16, 1, 27, 19, 12, 22, 14, 16, 1, 27], [36, 5, 14, 16, 1, 27, 36, 9, 14, 16, 6, 27, 36, 5, 14, 16, 1, 27, 19, 12, 22, 14, 16, 1, 27, 36, 21, 16, 29, 28, 27, 36, 5, 14, 16, 10, 27], [36, 5, 14, 16, 1, 27, 36, 9, 14, 16, 6, 27, 36, 5, 14, 16, 1, 27, 19, 12, 22, 14, 16, 1, 27, 36, 21, 16, 29, 28, 27, 36, 5, 14, 16, 10, 27, 35, 2, 14, 16, 1, 27, 36, 2, 14, 16, 6, 27], [36, 5, 14, 16, 1, 27, 36, 9, 14, 16, 6, 27, 36, 5, 14, 16, 1, 27, 19, 12, 22, 14, 16, 1, 27, 36, 21, 16, 29, 28, 27, 36, 5, 14, 16, 10, 27, 35, 2, 14, 16, 1, 27, 36, 2, 14, 16, 6, 27, 36, 5, 14, 16, 10, 27, 36, 5, 14, 16, 23, 27], [25, 12, 22, 14, 16, 6, 27, 36, 4, 16, 20, 28, 27], [25, 12, 22, 14, 16, 6, 27, 36, 4, 16, 20, 28, 27, 25, 9, 14, 16, 3, 27, 25, 12, 14, 16, 23, 27], [25, 12, 22, 14, 16, 6, 27, 36, 4, 16, 20, 28, 27, 25, 9, 14, 16, 3, 27, 25, 12, 14, 16, 23, 27, 25, 32, 16, 29, 28, 27, 19, 2, 14, 16, 23, 27], [25, 12, 22, 14, 16, 6, 27, 36, 4, 16, 20, 28, 27, 25, 9, 14, 16, 3, 27, 25, 12, 14, 16, 23, 27, 25, 32, 16, 29, 28, 27, 19, 2, 14, 16, 23, 27, 25, 30, 16, 29, 27, 36, 31, 16, 20, 28, 27], [25, 12, 22, 14, 16, 6, 27, 36, 4, 16, 20, 28, 27, 25, 9, 14, 16, 3, 27, 25, 12, 14, 16, 23, 27, 25, 32, 16, 29, 28, 27, 19, 2, 14, 16, 23, 27, 25, 30, 16, 29, 27, 36, 31, 16, 20, 28, 27, 35, 12, 14, 16, 23, 27, 35, 8, 11, 16, 20, 28, 27], [36, 12, 14, 16, 23, 27, 25, 4, 16, 29, 28, 27], [36, 12, 14, 16, 23, 27, 25, 4, 16, 29, 28, 27, 36, 12, 14, 16, 1, 27, 19, 32, 16, 17, 28, 27], [36, 12, 14, 16, 23, 27, 25, 4, 16, 29, 28, 27, 36, 12, 14, 16, 1, 27, 19, 32, 16, 17, 28, 27, 35, 2, 14, 16, 18, 27, 36, 12, 14, 16, 3, 27], [36, 12, 14, 16, 23, 27, 25, 4, 16, 29, 28, 27, 36, 12, 14, 16, 1, 27, 19, 32, 16, 17, 28, 27, 35, 2, 14, 16, 18, 27, 36, 12, 14, 16, 3, 27, 25, 9, 14, 16, 6, 27, 25, 9, 14, 16, 3, 27], [36, 12, 14, 16, 23, 27, 25, 4, 16, 29, 28, 27, 36, 12, 14, 16, 1, 27, 19, 32, 16, 17, 28, 27, 35, 2, 14, 16, 18, 27, 36, 12, 14, 16, 3, 27, 25, 9, 14, 16, 6, 27, 25, 9, 14, 16, 3, 27, 35, 5, 14, 16, 1, 27, 36, 8, 11, 16, 20, 28, 27], [19, 12, 22, 14, 16, 18, 27, 36, 21, 16, 20, 28, 27], [19, 12, 22, 14, 16, 18, 27, 36, 21, 16, 20, 28, 27, 35, 5, 14, 16, 23, 27, 35, 21, 16, 29, 28, 27], [19, 12, 22, 14, 16, 18, 27, 36, 21, 16, 20, 28, 27, 35, 5, 14, 16, 23, 27, 35, 21, 16, 29, 28, 27, 36, 30, 16, 20, 27, 19, 5, 14, 16, 6, 27], [19, 12, 22, 14, 16, 18, 27, 36, 21, 16, 20, 28, 27, 35, 5, 14, 16, 23, 27, 35, 21, 16, 29, 28, 27, 36, 30, 16, 20, 27, 19, 5, 14, 16, 6, 27, 35, 2, 14, 16, 3, 27, 36, 12, 14, 16, 3, 27], [19, 12, 22, 14, 16, 18, 27, 36, 21, 16, 20, 28, 27, 35, 5, 14, 16, 23, 27, 35, 21, 16, 29, 28, 27, 36, 30, 16, 20, 27, 19, 5, 14, 16, 6, 27, 35, 2, 14, 16, 3, 27, 36, 12, 14, 16, 3, 27, 36, 12, 14, 16, 1, 27, 25, 12, 14, 16, 6, 27], [35, 12, 22, 14, 16, 10, 27, 35, 12, 14, 16, 18, 27], [35, 12, 22, 14, 16, 10, 27, 35, 12, 14, 16, 18, 27, 19, 12, 14, 16, 10, 27, 35, 12, 14, 16, 6, 27], [35, 12, 22, 14, 16, 10, 27, 35, 12, 14, 16, 18, 27, 19, 12, 14, 16, 10, 27, 35, 12, 14, 16, 6, 27, 35, 12, 14, 16, 3, 27, 36, 9, 14, 16, 6, 27], [35, 12, 22, 14, 16, 10, 27, 35, 12, 14, 16, 18, 27, 19, 12, 14, 16, 10, 27, 35, 12, 14, 16, 6, 27, 35, 12, 14, 16, 3, 27, 36, 9, 14, 16, 6, 27, 36, 5, 14, 16, 23, 27, 35, 12, 22, 14, 16, 18, 27], [35, 12, 22, 14, 16, 10, 27, 35, 12, 14, 16, 18, 27, 19, 12, 14, 16, 10, 27, 35, 12, 14, 16, 6, 27, 35, 12, 14, 16, 3, 27, 36, 9, 14, 16, 6, 27, 36, 5, 14, 16, 23, 27, 35, 12, 22, 14, 16, 18, 27, 36, 5, 14, 16, 18, 27, 36, 5, 14, 16, 3, 27], [25, 9, 14, 16, 10, 27, 25, 4, 16, 17, 28, 27], [25, 9, 14, 16, 10, 27, 25, 4, 16, 17, 28, 27, 25, 2, 14, 16, 1, 27, 35, 12, 22, 14, 16, 18, 27], [25, 9, 14, 16, 10, 27, 25, 4, 16, 17, 28, 27, 25, 2, 14, 16, 1, 27, 35, 12, 22, 14, 16, 18, 27, 25, 2, 14, 16, 18, 27, 36, 5, 14, 16, 18, 27], [25, 9, 14, 16, 10, 27, 25, 4, 16, 17, 28, 27, 25, 2, 14, 16, 1, 27, 35, 12, 22, 14, 16, 18, 27, 25, 2, 14, 16, 18, 27, 36, 5, 14, 16, 18, 27, 25, 26, 33, 16, 17, 28, 27, 35, 21, 16, 17, 28, 27], [25, 9, 14, 16, 10, 27, 25, 4, 16, 17, 28, 27, 25, 2, 14, 16, 1, 27, 35, 12, 22, 14, 16, 18, 27, 25, 2, 14, 16, 18, 27, 36, 5, 14, 16, 18, 27, 25, 26, 33, 16, 17, 28, 27, 35, 21, 16, 17, 28, 27, 35, 12, 22, 14, 16, 10, 27, 35, 12, 14, 16, 6, 27], [35, 9, 14, 16, 18, 27, 36, 32, 16, 17, 28, 27], [35, 9, 14, 16, 18, 27, 36, 32, 16, 17, 28, 27, 36, 2, 14, 16, 6, 27, 25, 12, 14, 16, 6, 27], [35, 9, 14, 16, 18, 27, 36, 32, 16, 17, 28, 27, 36, 2, 14, 16, 6, 27, 25, 12, 14, 16, 6, 27, 19, 12, 22, 14, 16, 1, 27, 35, 12, 22, 14, 16, 1, 27], [35, 9, 14, 16, 18, 27, 36, 32, 16, 17, 28, 27, 36, 2, 14, 16, 6, 27, 25, 12, 14, 16, 6, 27, 19, 12, 22, 14, 16, 1, 27, 35, 12, 22, 14, 16, 1, 27, 36, 26, 33, 16, 17, 27, 36, 32, 16, 17, 28, 27], [35, 9, 14, 16, 18, 27, 36, 32, 16, 17, 28, 27, 36, 2, 14, 16, 6, 27, 25, 12, 14, 16, 6, 27, 19, 12, 22, 14, 16, 1, 27, 35, 12, 22, 14, 16, 1, 27, 36, 26, 33, 16, 17, 27, 36, 32, 16, 17, 28, 27, 25, 9, 14, 16, 18, 27, 36, 2, 14, 16, 10, 27], [35, 9, 14, 16, 6, 27, 25, 5, 14, 16, 23, 27], [35, 9, 14, 16, 6, 27, 25, 5, 14, 16, 23, 27, 35, 5, 14, 16, 1, 27, 25, 32, 16, 29, 28, 27], [35, 9, 14, 16, 6, 27, 25, 5, 14, 16, 23, 27, 35, 5, 14, 16, 1, 27, 25, 32, 16, 29, 28, 27, 36, 12, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27], [35, 9, 14, 16, 6, 27, 25, 5, 14, 16, 23, 27, 35, 5, 14, 16, 1, 27, 25, 32, 16, 29, 28, 27, 36, 12, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27, 25, 24, 16, 29, 28, 27, 19, 5, 14, 16, 1, 27], [35, 9, 14, 16, 6, 27, 25, 5, 14, 16, 23, 27, 35, 5, 14, 16, 1, 27, 25, 32, 16, 29, 28, 27, 36, 12, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27, 25, 24, 16, 29, 28, 27, 19, 5, 14, 16, 1, 27, 35, 8, 11, 16, 29, 28, 27, 35, 30, 16, 29, 28, 27], [19, 5, 14, 16, 18, 27, 35, 12, 14, 16, 1, 27], [19, 5, 14, 16, 18, 27, 35, 12, 14, 16, 1, 27, 36, 12, 14, 16, 23, 27, 36, 9, 14, 16, 1, 27], [19, 5, 14, 16, 18, 27, 35, 12, 14, 16, 1, 27, 36, 12, 14, 16, 23, 27, 36, 9, 14, 16, 1, 27, 25, 9, 14, 16, 1, 27, 25, 12, 22, 14, 16, 3, 27], [19, 5, 14, 16, 18, 27, 35, 12, 14, 16, 1, 27, 36, 12, 14, 16, 23, 27, 36, 9, 14, 16, 1, 27, 25, 9, 14, 16, 1, 27, 25, 12, 22, 14, 16, 3, 27, 36, 9, 14, 16, 23, 27, 35, 12, 22, 14, 16, 23, 27], [19, 5, 14, 16, 18, 27, 35, 12, 14, 16, 1, 27, 36, 12, 14, 16, 23, 27, 36, 9, 14, 16, 1, 27, 25, 9, 14, 16, 1, 27, 25, 12, 22, 14, 16, 3, 27, 36, 9, 14, 16, 23, 27, 35, 12, 22, 14, 16, 23, 27, 36, 5, 14, 16, 3, 27, 19, 8, 11, 16, 29, 28, 27], [25, 2, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27], [25, 2, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27, 19, 5, 14, 16, 6, 27, 25, 21, 16, 29, 28, 27], [25, 2, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27, 19, 5, 14, 16, 6, 27, 25, 21, 16, 29, 28, 27, 35, 32, 16, 17, 28, 27, 35, 24, 16, 17, 27], [25, 2, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27, 19, 5, 14, 16, 6, 27, 25, 21, 16, 29, 28, 27, 35, 32, 16, 17, 28, 27, 35, 24, 16, 17, 27, 25, 2, 14, 16, 23, 27, 19, 12, 14, 16, 18, 27], [25, 2, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27, 19, 5, 14, 16, 6, 27, 25, 21, 16, 29, 28, 27, 35, 32, 16, 17, 28, 27, 35, 24, 16, 17, 27, 25, 2, 14, 16, 23, 27, 19, 12, 14, 16, 18, 27, 25, 2, 14, 16, 18, 27, 35, 8, 11, 16, 17, 28, 27], [35, 21, 16, 17, 28, 27, 35, 30, 16, 17, 27, 25, 12, 14, 16, 18, 27, 35, 32, 16, 17, 28, 27], [35, 21, 16, 17, 28, 27, 35, 30, 16, 17, 27, 25, 12, 14, 16, 18, 27, 35, 32, 16, 17, 28, 27, 35, 31, 16, 17, 28, 27, 19, 12, 22, 14, 16, 18, 27], [35, 21, 16, 17, 28, 27, 35, 30, 16, 17, 27, 25, 12, 14, 16, 18, 27, 35, 32, 16, 17, 28, 27, 35, 31, 16, 17, 28, 27, 19, 12, 22, 14, 16, 18, 27, 25, 12, 14, 16, 1, 27, 35, 12, 22, 14, 16, 10, 27], [35, 21, 16, 17, 28, 27, 35, 30, 16, 17, 27, 25, 12, 14, 16, 18, 27, 35, 32, 16, 17, 28, 27, 35, 31, 16, 17, 28, 27, 19, 12, 22, 14, 16, 18, 27, 25, 12, 14, 16, 1, 27, 35, 12, 22, 14, 16, 10, 27, 36, 4, 16, 17, 28, 27, 36, 9, 14, 16, 18, 27], [35, 21, 16, 17, 28, 27, 35, 30, 16, 17, 27, 25, 12, 14, 16, 18, 27, 35, 32, 16, 17, 28, 27, 35, 31, 16, 17, 28, 27, 19, 12, 22, 14, 16, 18, 27, 25, 12, 14, 16, 1, 27, 35, 12, 22, 14, 16, 10, 27, 36, 4, 16, 17, 28, 27, 36, 9, 14, 16, 18, 27, 25, 4, 16, 29, 28, 27, 19, 32, 16, 20, 28, 27], [35, 9, 14, 16, 18, 27, 36, 9, 14, 16, 18, 27], [35, 9, 14, 16, 18, 27, 36, 9, 14, 16, 18, 27, 25, 5, 14, 16, 1, 27, 25, 12, 14, 16, 18, 27], [35, 9, 14, 16, 18, 27, 36, 9, 14, 16, 18, 27, 25, 5, 14, 16, 1, 27, 25, 12, 14, 16, 18, 27, 19, 12, 22, 14, 16, 18, 27, 36, 32, 16, 29, 28, 27], [35, 9, 14, 16, 18, 27, 36, 9, 14, 16, 18, 27, 25, 5, 14, 16, 1, 27, 25, 12, 14, 16, 18, 27, 19, 12, 22, 14, 16, 18, 27, 36, 32, 16, 29, 28, 27, 36, 26, 33, 16, 29, 27, 36, 5, 14, 16, 3, 27], [35, 9, 14, 16, 18, 27, 36, 9, 14, 16, 18, 27, 25, 5, 14, 16, 1, 27, 25, 12, 14, 16, 18, 27, 19, 12, 22, 14, 16, 18, 27, 36, 32, 16, 29, 28, 27, 36, 26, 33, 16, 29, 27, 36, 5, 14, 16, 3, 27, 35, 8, 11, 16, 29, 28, 27, 19, 5, 14, 16, 23, 27], [35, 9, 14, 16, 10, 27, 36, 8, 11, 16, 29, 28, 27], [35, 9, 14, 16, 10, 27, 36, 8, 11, 16, 29, 28, 27, 35, 12, 14, 16, 23, 27, 25, 21, 16, 17, 28, 27], [35, 9, 14, 16, 10, 27, 36, 8, 11, 16, 29, 28, 27, 35, 12, 14, 16, 23, 27, 25, 21, 16, 17, 28, 27, 35, 5, 14, 16, 1, 27, 25, 5, 14, 16, 23, 27], [35, 9, 14, 16, 10, 27, 36, 8, 11, 16, 29, 28, 27, 35, 12, 14, 16, 23, 27, 25, 21, 16, 17, 28, 27, 35, 5, 14, 16, 1, 27, 25, 5, 14, 16, 23, 27, 36, 26, 33, 16, 29, 28, 27, 36, 5, 14, 16, 1, 27], [35, 9, 14, 16, 10, 27, 36, 8, 11, 16, 29, 28, 27, 35, 12, 14, 16, 23, 27, 25, 21, 16, 17, 28, 27, 35, 5, 14, 16, 1, 27, 25, 5, 14, 16, 23, 27, 36, 26, 33, 16, 29, 28, 27, 36, 5, 14, 16, 1, 27, 35, 5, 14, 16, 18, 27, 25, 12, 22, 14, 16, 10, 27], [25, 9, 14, 16, 10, 27, 25, 8, 11, 16, 20, 28, 27], [25, 9, 14, 16, 10, 27, 25, 8, 11, 16, 20, 28, 27, 35, 12, 14, 16, 1, 27, 19, 5, 14, 16, 3, 27], [25, 9, 14, 16, 10, 27, 25, 8, 11, 16, 20, 28, 27, 35, 12, 14, 16, 1, 27, 19, 5, 14, 16, 3, 27, 35, 9, 14, 16, 23, 27, 35, 9, 14, 16, 10, 27], [25, 9, 14, 16, 10, 27, 25, 8, 11, 16, 20, 28, 27, 35, 12, 14, 16, 1, 27, 19, 5, 14, 16, 3, 27, 35, 9, 14, 16, 23, 27, 35, 9, 14, 16, 10, 27, 25, 2, 14, 16, 23, 27, 19, 8, 11, 16, 29, 28, 27], [25, 9, 14, 16, 10, 27, 25, 8, 11, 16, 20, 28, 27, 35, 12, 14, 16, 1, 27, 19, 5, 14, 16, 3, 27, 35, 9, 14, 16, 23, 27, 35, 9, 14, 16, 10, 27, 25, 2, 14, 16, 23, 27, 19, 8, 11, 16, 29, 28, 27, 35, 12, 22, 14, 16, 3, 27, 25, 12, 14, 16, 18, 27], [19, 9, 14, 16, 18, 27, 35, 12, 22, 14, 16, 6, 27], [19, 9, 14, 16, 18, 27, 35, 12, 22, 14, 16, 6, 27, 36, 5, 14, 16, 23, 27, 19, 12, 14, 16, 3, 27], [19, 9, 14, 16, 18, 27, 35, 12, 22, 14, 16, 6, 27, 36, 5, 14, 16, 23, 27, 19, 12, 14, 16, 3, 27, 19, 12, 22, 14, 16, 6, 27, 19, 5, 14, 16, 1, 27], [19, 9, 14, 16, 18, 27, 35, 12, 22, 14, 16, 6, 27, 36, 5, 14, 16, 23, 27, 19, 12, 14, 16, 3, 27, 19, 12, 22, 14, 16, 6, 27, 19, 5, 14, 16, 1, 27, 25, 5, 14, 16, 6, 27, 25, 5, 14, 16, 3, 27], [19, 9, 14, 16, 18, 27, 35, 12, 22, 14, 16, 6, 27, 36, 5, 14, 16, 23, 27, 19, 12, 14, 16, 3, 27, 19, 12, 22, 14, 16, 6, 27, 19, 5, 14, 16, 1, 27, 25, 5, 14, 16, 6, 27, 25, 5, 14, 16, 3, 27, 19, 2, 14, 16, 3, 27, 19, 12, 14, 16, 1, 27], [25, 12, 22, 14, 16, 1, 27, 25, 5, 14, 16, 10, 27], [25, 12, 22, 14, 16, 1, 27, 25, 5, 14, 16, 10, 27, 25, 9, 14, 16, 6, 27, 35, 9, 14, 16, 10, 27], [25, 12, 22, 14, 16, 1, 27, 25, 5, 14, 16, 10, 27, 25, 9, 14, 16, 6, 27, 35, 9, 14, 16, 10, 27, 35, 2, 14, 16, 3, 27, 25, 9, 14, 16, 10, 27], [25, 12, 22, 14, 16, 1, 27, 25, 5, 14, 16, 10, 27, 25, 9, 14, 16, 6, 27, 35, 9, 14, 16, 10, 27, 35, 2, 14, 16, 3, 27, 25, 9, 14, 16, 10, 27, 19, 12, 14, 16, 23, 27, 35, 21, 16, 29, 28, 27], [25, 12, 22, 14, 16, 1, 27, 25, 5, 14, 16, 10, 27, 25, 9, 14, 16, 6, 27, 35, 9, 14, 16, 10, 27, 35, 2, 14, 16, 3, 27, 25, 9, 14, 16, 10, 27, 19, 12, 14, 16, 23, 27, 35, 21, 16, 29, 28, 27, 19, 32, 16, 17, 28, 27, 35, 12, 22, 14, 16, 1, 27], [35, 12, 14, 16, 3, 27, 25, 5, 14, 16, 18, 27], [35, 12, 14, 16, 3, 27, 25, 5, 14, 16, 18, 27, 19, 9, 14, 16, 23, 27, 36, 12, 14, 16, 3, 27], [35, 12, 14, 16, 3, 27, 25, 5, 14, 16, 18, 27, 19, 9, 14, 16, 23, 27, 36, 12, 14, 16, 3, 27, 19, 2, 14, 16, 6, 27, 25, 12, 22, 14, 16, 10, 27], [35, 12, 14, 16, 3, 27, 25, 5, 14, 16, 18, 27, 19, 9, 14, 16, 23, 27, 36, 12, 14, 16, 3, 27, 19, 2, 14, 16, 6, 27, 25, 12, 22, 14, 16, 10, 27, 25, 5, 14, 16, 1, 27, 19, 32, 16, 17, 28, 27], [35, 12, 14, 16, 3, 27, 25, 5, 14, 16, 18, 27, 19, 9, 14, 16, 23, 27, 36, 12, 14, 16, 3, 27, 19, 2, 14, 16, 6, 27, 25, 12, 22, 14, 16, 10, 27, 25, 5, 14, 16, 1, 27, 19, 32, 16, 17, 28, 27, 19, 30, 16, 17, 27, 19, 32, 16, 17, 28, 27], [35, 12, 14, 16, 23, 27, 36, 12, 22, 14, 16, 10, 27], [35, 12, 14, 16, 23, 27, 36, 12, 22, 14, 16, 10, 27, 36, 8, 11, 16, 29, 28, 27, 35, 9, 14, 16, 10, 27], [35, 12, 14, 16, 23, 27, 36, 12, 22, 14, 16, 10, 27, 36, 8, 11, 16, 29, 28, 27, 35, 9, 14, 16, 10, 27, 35, 12, 22, 14, 16, 18, 27, 36, 5, 14, 16, 23, 27], [35, 12, 14, 16, 23, 27, 36, 12, 22, 14, 16, 10, 27, 36, 8, 11, 16, 29, 28, 27, 35, 9, 14, 16, 10, 27, 35, 12, 22, 14, 16, 18, 27, 36, 5, 14, 16, 23, 27, 35, 2, 14, 16, 3, 27, 25, 2, 14, 16, 1, 27], [35, 12, 14, 16, 23, 27, 36, 12, 22, 14, 16, 10, 27, 36, 8, 11, 16, 29, 28, 27, 35, 9, 14, 16, 10, 27, 35, 12, 22, 14, 16, 18, 27, 36, 5, 14, 16, 23, 27, 35, 2, 14, 16, 3, 27, 25, 2, 14, 16, 1, 27, 36, 32, 16, 17, 28, 27, 25, 9, 14, 16, 23, 27], [36, 12, 22, 14, 16, 23, 27, 35, 2, 14, 16, 6, 27], [36, 12, 22, 14, 16, 23, 27, 35, 2, 14, 16, 6, 27, 25, 12, 22, 14, 16, 23, 27, 35, 21, 16, 17, 28, 27], [36, 12, 22, 14, 16, 23, 27, 35, 2, 14, 16, 6, 27, 25, 12, 22, 14, 16, 23, 27, 35, 21, 16, 17, 28, 27, 19, 8, 11, 16, 29, 28, 27, 25, 8, 11, 16, 20, 28, 27], [36, 12, 22, 14, 16, 23, 27, 35, 2, 14, 16, 6, 27, 25, 12, 22, 14, 16, 23, 27, 35, 21, 16, 17, 28, 27, 19, 8, 11, 16, 29, 28, 27, 25, 8, 11, 16, 20, 28, 27, 25, 2, 14, 16, 10, 27, 36, 12, 14, 16, 1, 27], [36, 12, 22, 14, 16, 23, 27, 35, 2, 14, 16, 6, 27, 25, 12, 22, 14, 16, 23, 27, 35, 21, 16, 17, 28, 27, 19, 8, 11, 16, 29, 28, 27, 25, 8, 11, 16, 20, 28, 27, 25, 2, 14, 16, 10, 27, 36, 12, 14, 16, 1, 27, 19, 9, 14, 16, 1, 27, 35, 30, 16, 17, 27], [36, 2, 14, 16, 18, 27, 35, 4, 16, 29, 28, 27], [36, 2, 14, 16, 18, 27, 35, 4, 16, 29, 28, 27, 35, 30, 16, 29, 27, 19, 2, 14, 16, 10, 27], [36, 2, 14, 16, 18, 27, 35, 4, 16, 29, 28, 27, 35, 30, 16, 29, 27, 19, 2, 14, 16, 10, 27, 36, 2, 14, 16, 6, 27, 19, 12, 22, 14, 16, 23, 27], [36, 2, 14, 16, 18, 27, 35, 4, 16, 29, 28, 27, 35, 30, 16, 29, 27, 19, 2, 14, 16, 10, 27, 36, 2, 14, 16, 6, 27, 19, 12, 22, 14, 16, 23, 27, 19, 12, 14, 16, 6, 27, 36, 2, 14, 16, 3, 27], [36, 2, 14, 16, 18, 27, 35, 4, 16, 29, 28, 27, 35, 30, 16, 29, 27, 19, 2, 14, 16, 10, 27, 36, 2, 14, 16, 6, 27, 19, 12, 22, 14, 16, 23, 27, 19, 12, 14, 16, 6, 27, 36, 2, 14, 16, 3, 27, 35, 32, 16, 29, 28, 27, 19, 12, 22, 14, 16, 23, 27], [35, 12, 22, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27], [35, 12, 22, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27, 35, 32, 16, 20, 28, 27, 35, 26, 33, 16, 20, 28, 27], [35, 12, 22, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27, 35, 32, 16, 20, 28, 27, 35, 26, 33, 16, 20, 28, 27, 19, 5, 14, 16, 6, 27, 36, 12, 14, 16, 18, 27], [35, 12, 22, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27, 35, 32, 16, 20, 28, 27, 35, 26, 33, 16, 20, 28, 27, 19, 5, 14, 16, 6, 27, 36, 12, 14, 16, 18, 27, 19, 9, 14, 16, 3, 27, 19, 5, 14, 16, 23, 27], [35, 12, 22, 14, 16, 6, 27, 25, 12, 14, 16, 1, 27, 35, 32, 16, 20, 28, 27, 35, 26, 33, 16, 20, 28, 27, 19, 5, 14, 16, 6, 27, 36, 12, 14, 16, 18, 27, 19, 9, 14, 16, 3, 27, 19, 5, 14, 16, 23, 27, 35, 9, 14, 16, 18, 27, 35, 12, 14, 16, 1, 27], [35, 5, 14, 16, 1, 27, 25, 32, 16, 29, 28, 27], [35, 5, 14, 16, 1, 27, 25, 32, 16, 29, 28, 27, 19, 5, 14, 16, 6, 27, 25, 31, 16, 29, 27], [35, 5, 14, 16, 1, 27, 25, 32, 16, 29, 28, 27, 19, 5, 14, 16, 6, 27, 25, 31, 16, 29, 27, 36, 12, 22, 14, 16, 6, 27, 19, 12, 22, 14, 16, 23, 27], [35, 5, 14, 16, 1, 27, 25, 32, 16, 29, 28, 27, 19, 5, 14, 16, 6, 27, 25, 31, 16, 29, 27, 36, 12, 22, 14, 16, 6, 27, 19, 12, 22, 14, 16, 23, 27, 35, 9, 14, 16, 3, 27, 25, 8, 11, 16, 29, 28, 27], [35, 5, 14, 16, 1, 27, 25, 32, 16, 29, 28, 27, 19, 5, 14, 16, 6, 27, 25, 31, 16, 29, 27, 36, 12, 22, 14, 16, 6, 27, 19, 12, 22, 14, 16, 23, 27, 35, 9, 14, 16, 3, 27, 25, 8, 11, 16, 29, 28, 27, 36, 12, 22, 14, 16, 1, 27, 19, 9, 14, 16, 6, 27], [36, 4, 16, 20, 28, 27, 19, 4, 16, 29, 28, 27, 19, 26, 33, 16, 29, 28, 27, 19, 9, 14, 16, 23, 27], [36, 4, 16, 20, 28, 27, 19, 4, 16, 29, 28, 27, 19, 26, 33, 16, 29, 28, 27, 19, 9, 14, 16, 23, 27, 36, 5, 14, 16, 10, 27, 19, 12, 22, 14, 16, 10, 27], [36, 4, 16, 20, 28, 27, 19, 4, 16, 29, 28, 27, 19, 26, 33, 16, 29, 28, 27, 19, 9, 14, 16, 23, 27, 36, 5, 14, 16, 10, 27, 19, 12, 22, 14, 16, 10, 27, 36, 26, 33, 16, 20, 28, 27, 25, 5, 14, 16, 6, 27], [36, 4, 16, 20, 28, 27, 19, 4, 16, 29, 28, 27, 19, 26, 33, 16, 29, 28, 27, 19, 9, 14, 16, 23, 27, 36, 5, 14, 16, 10, 27, 19, 12, 22, 14, 16, 10, 27, 36, 26, 33, 16, 20, 28, 27, 25, 5, 14, 16, 6, 27, 19, 12, 14, 16, 18, 27, 25, 5, 14, 16, 1, 27], [36, 4, 16, 20, 28, 27, 19, 4, 16, 29, 28, 27, 19, 26, 33, 16, 29, 28, 27, 19, 9, 14, 16, 23, 27, 36, 5, 14, 16, 10, 27, 19, 12, 22, 14, 16, 10, 27, 36, 26, 33, 16, 20, 28, 27, 25, 5, 14, 16, 6, 27, 19, 12, 14, 16, 18, 27, 25, 5, 14, 16, 1, 27, 35, 2, 14, 16, 3, 27, 25, 21, 16, 17, 28, 27], [25, 8, 11, 16, 20, 28, 27, 25, 32, 16, 29, 28, 27, 36, 12, 22, 14, 16, 23, 27, 19, 9, 14, 16, 23, 27], [25, 8, 11, 16, 20, 28, 27, 25, 32, 16, 29, 28, 27, 36, 12, 22, 14, 16, 23, 27, 19, 9, 14, 16, 23, 27, 25, 12, 14, 16, 1, 27, 25, 12, 22, 14, 16, 23, 27], [25, 8, 11, 16, 20, 28, 27, 25, 32, 16, 29, 28, 27, 36, 12, 22, 14, 16, 23, 27, 19, 9, 14, 16, 23, 27, 25, 12, 14, 16, 1, 27, 25, 12, 22, 14, 16, 23, 27, 25, 12, 14, 16, 1, 27, 35, 2, 14, 16, 18, 27], [25, 8, 11, 16, 20, 28, 27, 25, 32, 16, 29, 28, 27, 36, 12, 22, 14, 16, 23, 27, 19, 9, 14, 16, 23, 27, 25, 12, 14, 16, 1, 27, 25, 12, 22, 14, 16, 23, 27, 25, 12, 14, 16, 1, 27, 35, 2, 14, 16, 18, 27, 19, 9, 14, 16, 10, 27, 35, 12, 14, 16, 10, 27], [25, 8, 11, 16, 20, 28, 27, 25, 32, 16, 29, 28, 27, 36, 12, 22, 14, 16, 23, 27, 19, 9, 14, 16, 23, 27, 25, 12, 14, 16, 1, 27, 25, 12, 22, 14, 16, 23, 27, 25, 12, 14, 16, 1, 27, 35, 2, 14, 16, 18, 27, 19, 9, 14, 16, 10, 27, 35, 12, 14, 16, 10, 27, 19, 12, 22, 14, 16, 18, 27, 25, 9, 14, 16, 23, 27], [25, 2, 14, 16, 1, 27, 35, 21, 16, 17, 28, 27], [25, 2, 14, 16, 1, 27, 35, 21, 16, 17, 28, 27, 36, 12, 14, 16, 1, 27, 19, 12, 14, 16, 6, 27], [25, 2, 14, 16, 1, 27, 35, 21, 16, 17, 28, 27, 36, 12, 14, 16, 1, 27, 19, 12, 14, 16, 6, 27, 19, 12, 14, 16, 3, 27, 25, 12, 22, 14, 16, 3, 27], [25, 2, 14, 16, 1, 27, 35, 21, 16, 17, 28, 27, 36, 12, 14, 16, 1, 27, 19, 12, 14, 16, 6, 27, 19, 12, 14, 16, 3, 27, 25, 12, 22, 14, 16, 3, 27, 19, 12, 22, 14, 16, 18, 27, 35, 32, 16, 20, 28, 27], [25, 2, 14, 16, 1, 27, 35, 21, 16, 17, 28, 27, 36, 12, 14, 16, 1, 27, 19, 12, 14, 16, 6, 27, 19, 12, 14, 16, 3, 27, 25, 12, 22, 14, 16, 3, 27, 19, 12, 22, 14, 16, 18, 27, 35, 32, 16, 20, 28, 27, 25, 5, 14, 16, 1, 27, 35, 24, 16, 17, 28, 27], [19, 2, 14, 16, 3, 27, 25, 21, 16, 29, 28, 27], [19, 2, 14, 16, 3, 27, 25, 21, 16, 29, 28, 27, 35, 9, 14, 16, 6, 27, 25, 30, 16, 29, 28, 27], [19, 2, 14, 16, 3, 27, 25, 21, 16, 29, 28, 27, 35, 9, 14, 16, 6, 27, 25, 30, 16, 29, 28, 27, 25, 9, 14, 16, 3, 27, 36, 9, 14, 16, 6, 27], [19, 2, 14, 16, 3, 27, 25, 21, 16, 29, 28, 27, 35, 9, 14, 16, 6, 27, 25, 30, 16, 29, 28, 27, 25, 9, 14, 16, 3, 27, 36, 9, 14, 16, 6, 27, 35, 9, 14, 16, 10, 27, 19, 12, 22, 14, 16, 23, 27], [19, 2, 14, 16, 3, 27, 25, 21, 16, 29, 28, 27, 35, 9, 14, 16, 6, 27, 25, 30, 16, 29, 28, 27, 25, 9, 14, 16, 3, 27, 36, 9, 14, 16, 6, 27, 35, 9, 14, 16, 10, 27, 19, 12, 22, 14, 16, 23, 27, 25, 2, 14, 16, 18, 27, 19, 2, 14, 16, 1, 27], [25, 2, 14, 16, 18, 27, 19, 2, 14, 16, 10, 27], [25, 2, 14, 16, 18, 27, 19, 2, 14, 16, 10, 27, 19, 9, 14, 16, 18, 27, 36, 2, 14, 16, 10, 27], [25, 2, 14, 16, 18, 27, 19, 2, 14, 16, 10, 27, 19, 9, 14, 16, 18, 27, 36, 2, 14, 16, 10, 27, 25, 32, 16, 17, 28, 27, 35, 5, 14, 16, 23, 27], [25, 2, 14, 16, 18, 27, 19, 2, 14, 16, 10, 27, 19, 9, 14, 16, 18, 27, 36, 2, 14, 16, 10, 27, 25, 32, 16, 17, 28, 27, 35, 5, 14, 16, 23, 27, 35, 32, 16, 20, 28, 27, 35, 9, 14, 16, 10, 27], [25, 2, 14, 16, 18, 27, 19, 2, 14, 16, 10, 27, 19, 9, 14, 16, 18, 27, 36, 2, 14, 16, 10, 27, 25, 32, 16, 17, 28, 27, 35, 5, 14, 16, 23, 27, 35, 32, 16, 20, 28, 27, 35, 9, 14, 16, 10, 27, 25, 30, 16, 17, 27, 36, 2, 14, 16, 23, 27], [35, 12, 22, 14, 16, 18, 27, 36, 32, 16, 29, 28, 27], [35, 12, 22, 14, 16, 18, 27, 36, 32, 16, 29, 28, 27, 35, 5, 14, 16, 23, 27, 19, 12, 14, 16, 3, 27], [35, 12, 22, 14, 16, 18, 27, 36, 32, 16, 29, 28, 27, 35, 5, 14, 16, 23, 27, 19, 12, 14, 16, 3, 27, 36, 24, 16, 29, 27, 25, 12, 14, 16, 23, 27], [35, 12, 22, 14, 16, 18, 27, 36, 32, 16, 29, 28, 27, 35, 5, 14, 16, 23, 27, 19, 12, 14, 16, 3, 27, 36, 24, 16, 29, 27, 25, 12, 14, 16, 23, 27, 36, 4, 16, 29, 28, 27, 36, 12, 14, 16, 10, 27], [35, 12, 22, 14, 16, 18, 27, 36, 32, 16, 29, 28, 27, 35, 5, 14, 16, 23, 27, 19, 12, 14, 16, 3, 27, 36, 24, 16, 29, 27, 25, 12, 14, 16, 23, 27, 36, 4, 16, 29, 28, 27, 36, 12, 14, 16, 10, 27, 19, 12, 14, 16, 1, 27, 35, 21, 16, 20, 28, 27], [35, 2, 14, 16, 1, 27, 19, 12, 14, 16, 6, 27], [35, 2, 14, 16, 1, 27, 19, 12, 14, 16, 6, 27, 36, 12, 14, 16, 23, 27, 36, 12, 22, 14, 16, 3, 27], [35, 2, 14, 16, 1, 27, 19, 12, 14, 16, 6, 27, 36, 12, 14, 16, 23, 27, 36, 12, 22, 14, 16, 3, 27, 19, 21, 16, 29, 28, 27, 35, 5, 14, 16, 18, 27], [35, 2, 14, 16, 1, 27, 19, 12, 14, 16, 6, 27, 36, 12, 14, 16, 23, 27, 36, 12, 22, 14, 16, 3, 27, 19, 21, 16, 29, 28, 27, 35, 5, 14, 16, 18, 27, 25, 9, 14, 16, 6, 27, 19, 24, 16, 29, 27], [35, 2, 14, 16, 1, 27, 19, 12, 14, 16, 6, 27, 36, 12, 14, 16, 23, 27, 36, 12, 22, 14, 16, 3, 27, 19, 21, 16, 29, 28, 27, 35, 5, 14, 16, 18, 27, 25, 9, 14, 16, 6, 27, 19, 24, 16, 29, 27, 35, 2, 14, 16, 10, 27, 25, 32, 16, 29, 28, 27], [35, 12, 14, 16, 23, 27, 35, 32, 16, 17, 28, 27], [35, 12, 14, 16, 23, 27, 35, 32, 16, 17, 28, 27, 35, 4, 16, 20, 28, 27, 19, 12, 14, 16, 18, 27], [35, 12, 14, 16, 23, 27, 35, 32, 16, 17, 28, 27, 35, 4, 16, 20, 28, 27, 19, 12, 14, 16, 18, 27, 25, 2, 14, 16, 10, 27, 25, 2, 14, 16, 1, 27], [35, 12, 14, 16, 23, 27, 35, 32, 16, 17, 28, 27, 35, 4, 16, 20, 28, 27, 19, 12, 14, 16, 18, 27, 25, 2, 14, 16, 10, 27, 25, 2, 14, 16, 1, 27, 36, 9, 14, 16, 18, 27, 35, 24, 16, 20, 27], [35, 12, 14, 16, 23, 27, 35, 32, 16, 17, 28, 27, 35, 4, 16, 20, 28, 27, 19, 12, 14, 16, 18, 27, 25, 2, 14, 16, 10, 27, 25, 2, 14, 16, 1, 27, 36, 9, 14, 16, 18, 27, 35, 24, 16, 20, 27, 36, 8, 11, 16, 29, 28, 27, 35, 30, 16, 17, 27], [36, 5, 14, 16, 1, 27, 36, 9, 14, 16, 6, 27], [36, 5, 14, 16, 1, 27, 36, 9, 14, 16, 6, 27, 36, 2, 14, 16, 3, 27, 36, 12, 14, 16, 10, 27], [36, 5, 14, 16, 1, 27, 36, 9, 14, 16, 6, 27, 36, 2, 14, 16, 3, 27, 36, 12, 14, 16, 10, 27, 36, 2, 14, 16, 1, 27, 25, 12, 14, 16, 1, 27], [36, 5, 14, 16, 1, 27, 36, 9, 14, 16, 6, 27, 36, 2, 14, 16, 3, 27, 36, 12, 14, 16, 10, 27, 36, 2, 14, 16, 1, 27, 25, 12, 14, 16, 1, 27, 19, 12, 22, 14, 16, 23, 27, 19, 2, 14, 16, 18, 27], [36, 5, 14, 16, 1, 27, 36, 9, 14, 16, 6, 27, 36, 2, 14, 16, 3, 27, 36, 12, 14, 16, 10, 27, 36, 2, 14, 16, 1, 27, 25, 12, 14, 16, 1, 27, 19, 12, 22, 14, 16, 23, 27, 19, 2, 14, 16, 18, 27, 19, 8, 11, 16, 29, 28, 27, 35, 12, 22, 14, 16, 3, 27], [36, 21, 16, 29, 28, 27, 19, 12, 14, 16, 10, 27], [36, 21, 16, 29, 28, 27, 19, 12, 14, 16, 10, 27, 35, 12, 14, 16, 10, 27, 35, 12, 14, 16, 3, 27], [36, 21, 16, 29, 28, 27, 19, 12, 14, 16, 10, 27, 35, 12, 14, 16, 10, 27, 35, 12, 14, 16, 3, 27, 19, 12, 22, 14, 16, 18, 27, 19, 12, 14, 16, 6, 27], [36, 21, 16, 29, 28, 27, 19, 12, 14, 16, 10, 27, 35, 12, 14, 16, 10, 27, 35, 12, 14, 16, 3, 27, 19, 12, 22, 14, 16, 18, 27, 19, 12, 14, 16, 6, 27, 19, 12, 14, 16, 1, 27, 25, 5, 14, 16, 18, 27], [36, 21, 16, 29, 28, 27, 19, 12, 14, 16, 10, 27, 35, 12, 14, 16, 10, 27, 35, 12, 14, 16, 3, 27, 19, 12, 22, 14, 16, 18, 27, 19, 12, 14, 16, 6, 27, 19, 12, 14, 16, 1, 27, 25, 5, 14, 16, 18, 27, 36, 2, 14, 16, 23, 27, 19, 12, 14, 16, 6, 27], [19, 12, 22, 14, 16, 10, 27, 19, 4, 16, 29, 28, 27], [19, 12, 22, 14, 16, 10, 27, 19, 4, 16, 29, 28, 27, 36, 32, 16, 17, 28, 27, 36, 5, 14, 16, 1, 27], [19, 12, 22, 14, 16, 10, 27, 19, 4, 16, 29, 28, 27, 36, 32, 16, 17, 28, 27, 36, 5, 14, 16, 1, 27, 19, 2, 14, 16, 3, 27, 19, 2, 14, 16, 18, 27], [19, 12, 22, 14, 16, 10, 27, 19, 4, 16, 29, 28, 27, 36, 32, 16, 17, 28, 27, 36, 5, 14, 16, 1, 27, 19, 2, 14, 16, 3, 27, 19, 2, 14, 16, 18, 27, 19, 32, 16, 20, 28, 27, 19, 31, 16, 29, 28, 27], [19, 12, 22, 14, 16, 10, 27, 19, 4, 16, 29, 28, 27, 36, 32, 16, 17, 28, 27, 36, 5, 14, 16, 1, 27, 19, 2, 14, 16, 3, 27, 19, 2, 14, 16, 18, 27, 19, 32, 16, 20, 28, 27, 19, 31, 16, 29, 28, 27, 25, 2, 14, 16, 6, 27, 35, 5, 14, 16, 18, 27], [36, 5, 14, 16, 10, 27, 36, 8, 11, 16, 20, 28, 27], [36, 5, 14, 16, 10, 27, 36, 8, 11, 16, 20, 28, 27, 36, 26, 33, 16, 20, 27, 36, 2, 14, 16, 23, 27], [36, 5, 14, 16, 10, 27, 36, 8, 11, 16, 20, 28, 27, 36, 26, 33, 16, 20, 27, 36, 2, 14, 16, 23, 27, 35, 21, 16, 29, 28, 27, 35, 12, 14, 16, 10, 27], [36, 5, 14, 16, 10, 27, 36, 8, 11, 16, 20, 28, 27, 36, 26, 33, 16, 20, 27, 36, 2, 14, 16, 23, 27, 35, 21, 16, 29, 28, 27, 35, 12, 14, 16, 10, 27, 36, 12, 14, 16, 1, 27, 35, 30, 16, 29, 27], [36, 5, 14, 16, 10, 27, 36, 8, 11, 16, 20, 28, 27, 36, 26, 33, 16, 20, 27, 36, 2, 14, 16, 23, 27, 35, 21, 16, 29, 28, 27, 35, 12, 14, 16, 10, 27, 36, 12, 14, 16, 1, 27, 35, 30, 16, 29, 27, 36, 5, 14, 16, 18, 27, 19, 12, 22, 14, 16, 23, 27], [35, 12, 14, 16, 3, 27, 25, 5, 14, 16, 1, 27], [35, 12, 14, 16, 3, 27, 25, 5, 14, 16, 1, 27, 35, 32, 16, 17, 28, 27, 36, 9, 14, 16, 3, 27], [35, 12, 14, 16, 3, 27, 25, 5, 14, 16, 1, 27, 35, 32, 16, 17, 28, 27, 36, 9, 14, 16, 3, 27, 25, 9, 14, 16, 6, 27, 25, 5, 14, 16, 18, 27], [35, 12, 14, 16, 3, 27, 25, 5, 14, 16, 1, 27, 35, 32, 16, 17, 28, 27, 36, 9, 14, 16, 3, 27, 25, 9, 14, 16, 6, 27, 25, 5, 14, 16, 18, 27, 25, 5, 14, 16, 6, 27, 35, 31, 16, 17, 27], [35, 12, 14, 16, 3, 27, 25, 5, 14, 16, 1, 27, 35, 32, 16, 17, 28, 27, 36, 9, 14, 16, 3, 27, 25, 9, 14, 16, 6, 27, 25, 5, 14, 16, 18, 27, 25, 5, 14, 16, 6, 27, 35, 31, 16, 17, 27, 35, 2, 14, 16, 6, 27, 36, 8, 11, 16, 20, 28, 27], [35, 12, 14, 16, 6, 27, 35, 2, 14, 16, 23, 27], [35, 12, 14, 16, 6, 27, 35, 2, 14, 16, 23, 27, 19, 12, 22, 14, 16, 6, 27, 35, 21, 16, 20, 28, 27], [35, 12, 14, 16, 6, 27, 35, 2, 14, 16, 23, 27, 19, 12, 22, 14, 16, 6, 27, 35, 21, 16, 20, 28, 27, 25, 9, 14, 16, 23, 27, 35, 24, 16, 20, 27], [35, 12, 14, 16, 6, 27, 35, 2, 14, 16, 23, 27, 19, 12, 22, 14, 16, 6, 27, 35, 21, 16, 20, 28, 27, 25, 9, 14, 16, 23, 27, 35, 24, 16, 20, 27, 19, 12, 14, 16, 23, 27, 35, 12, 22, 14, 16, 1, 27], [35, 12, 14, 16, 6, 27, 35, 2, 14, 16, 23, 27, 19, 12, 22, 14, 16, 6, 27, 35, 21, 16, 20, 28, 27, 25, 9, 14, 16, 23, 27, 35, 24, 16, 20, 27, 19, 12, 14, 16, 23, 27, 35, 12, 22, 14, 16, 1, 27, 25, 12, 14, 16, 1, 27, 35, 5, 14, 16, 6, 27], [19, 12, 14, 16, 23, 27, 35, 21, 16, 29, 28, 27], [19, 12, 14, 16, 23, 27, 35, 21, 16, 29, 28, 27, 25, 9, 14, 16, 10, 27, 35, 24, 16, 29, 27], [19, 12, 14, 16, 23, 27, 35, 21, 16, 29, 28, 27, 25, 9, 14, 16, 10, 27, 35, 24, 16, 29, 27, 19, 12, 14, 16, 10, 27, 36, 5, 14, 16, 23, 27], [19, 12, 14, 16, 23, 27, 35, 21, 16, 29, 28, 27, 25, 9, 14, 16, 10, 27, 35, 24, 16, 29, 27, 19, 12, 14, 16, 10, 27, 36, 5, 14, 16, 23, 27, 19, 5, 14, 16, 6, 27, 25, 12, 14, 16, 23, 27], [19, 12, 14, 16, 23, 27, 35, 21, 16, 29, 28, 27, 25, 9, 14, 16, 10, 27, 35, 24, 16, 29, 27, 19, 12, 14, 16, 10, 27, 36, 5, 14, 16, 23, 27, 19, 5, 14, 16, 6, 27, 25, 12, 14, 16, 23, 27, 25, 2, 14, 16, 1, 27, 36, 8, 11, 16, 17, 28, 27], ...]
len(train_story_sequence)
10000
train_question_text
[['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'garden', '?'], ['Is', 'Sandra', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Mary', 'in', 'the', 'bedroom', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'John', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'garden', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Daniel', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'garden', '?'], ['Is', 'John', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'garden', '?'], ['Is', 'Daniel', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Daniel', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'bathroom', '?'], ['Is', 'John', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'kitchen', '?'], ['Is', 'Mary', 'in', 'the', 'hallway', '?'], ['Is', 'Mary', 'in', 'the', 'bathroom', '?'], ['Is', 'Sandra', 'in', 'the', 'office', '?'], ['Is', 'Mary', 'in', 'the', 'office', '?'], ['Is', 'Sandra', 'in', 'the', 'hallway', '?'], ...]
len(train_question_text)
10000
train_question_sequence
[[13, 25, 37, 16, 6, 7], [13, 36, 37, 16, 23, 7], [13, 36, 37, 16, 10, 7], [13, 36, 37, 16, 18, 7], [13, 36, 37, 16, 18, 7], [13, 19, 37, 16, 18, 7], [13, 25, 37, 16, 10, 7], [13, 25, 37, 16, 23, 7], [13, 25, 37, 16, 23, 7], [13, 19, 37, 16, 1, 7], [13, 25, 37, 16, 10, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 3, 7], [13, 25, 37, 16, 10, 7], [13, 25, 37, 16, 23, 7], [13, 25, 37, 16, 1, 7], [13, 19, 37, 16, 18, 7], [13, 19, 37, 16, 1, 7], [13, 36, 37, 16, 18, 7], [13, 25, 37, 16, 23, 7], [13, 25, 37, 16, 18, 7], [13, 36, 37, 16, 10, 7], [13, 36, 37, 16, 1, 7], [13, 25, 37, 16, 23, 7], [13, 25, 37, 16, 10, 7], [13, 35, 37, 16, 10, 7], [13, 25, 37, 16, 10, 7], [13, 25, 37, 16, 6, 7], [13, 35, 37, 16, 23, 7], [13, 35, 37, 16, 18, 7], [13, 19, 37, 16, 6, 7], [13, 35, 37, 16, 18, 7], [13, 36, 37, 16, 23, 7], [13, 25, 37, 16, 6, 7], [13, 19, 37, 16, 1, 7], [13, 19, 37, 16, 23, 7], [13, 25, 37, 16, 10, 7], [13, 19, 37, 16, 23, 7], [13, 25, 37, 16, 3, 7], [13, 19, 37, 16, 10, 7], [13, 35, 37, 16, 23, 7], [13, 35, 37, 16, 3, 7], [13, 35, 37, 16, 3, 7], [13, 36, 37, 16, 6, 7], [13, 19, 37, 16, 10, 7], [13, 36, 37, 16, 23, 7], [13, 19, 37, 16, 6, 7], [13, 36, 37, 16, 1, 7], [13, 19, 37, 16, 23, 7], [13, 25, 37, 16, 23, 7], [13, 25, 37, 16, 23, 7], [13, 19, 37, 16, 18, 7], [13, 36, 37, 16, 23, 7], [13, 19, 37, 16, 1, 7], [13, 36, 37, 16, 1, 7], [13, 19, 37, 16, 1, 7], [13, 35, 37, 16, 18, 7], [13, 35, 37, 16, 3, 7], [13, 35, 37, 16, 23, 7], [13, 35, 37, 16, 3, 7], [13, 35, 37, 16, 3, 7], [13, 36, 37, 16, 1, 7], [13, 19, 37, 16, 23, 7], [13, 25, 37, 16, 23, 7], [13, 35, 37, 16, 23, 7], [13, 19, 37, 16, 1, 7], [13, 19, 37, 16, 18, 7], [13, 35, 37, 16, 3, 7], [13, 36, 37, 16, 23, 7], [13, 35, 37, 16, 6, 7], [13, 36, 37, 16, 6, 7], [13, 36, 37, 16, 6, 7], [13, 36, 37, 16, 6, 7], [13, 36, 37, 16, 6, 7], [13, 36, 37, 16, 3, 7], [13, 25, 37, 16, 18, 7], [13, 36, 37, 16, 10, 7], [13, 36, 37, 16, 18, 7], [13, 19, 37, 16, 18, 7], [13, 25, 37, 16, 10, 7], [13, 19, 37, 16, 18, 7], [13, 35, 37, 16, 18, 7], [13, 25, 37, 16, 10, 7], [13, 25, 37, 16, 23, 7], [13, 25, 37, 16, 23, 7], [13, 36, 37, 16, 6, 7], [13, 36, 37, 16, 23, 7], [13, 36, 37, 16, 10, 7], [13, 35, 37, 16, 18, 7], [13, 35, 37, 16, 3, 7], [13, 25, 37, 16, 18, 7], [13, 36, 37, 16, 1, 7], [13, 36, 37, 16, 6, 7], [13, 36, 37, 16, 18, 7], [13, 35, 37, 16, 23, 7], [13, 36, 37, 16, 18, 7], [13, 19, 37, 16, 18, 7], [13, 19, 37, 16, 3, 7], [13, 19, 37, 16, 10, 7], [13, 36, 37, 16, 6, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 18, 7], [13, 19, 37, 16, 1, 7], [13, 19, 37, 16, 1, 7], [13, 19, 37, 16, 1, 7], [13, 36, 37, 16, 1, 7], [13, 36, 37, 16, 10, 7], [13, 35, 37, 16, 1, 7], [13, 35, 37, 16, 6, 7], [13, 19, 37, 16, 18, 7], [13, 36, 37, 16, 18, 7], [13, 19, 37, 16, 18, 7], [13, 35, 37, 16, 18, 7], [13, 36, 37, 16, 6, 7], [13, 36, 37, 16, 23, 7], [13, 19, 37, 16, 1, 7], [13, 19, 37, 16, 1, 7], [13, 36, 37, 16, 10, 7], [13, 35, 37, 16, 23, 7], [13, 25, 37, 16, 18, 7], [13, 25, 37, 16, 18, 7], [13, 25, 37, 16, 23, 7], [13, 35, 37, 16, 18, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 10, 7], [13, 25, 37, 16, 23, 7], [13, 25, 37, 16, 3, 7], [13, 25, 37, 16, 1, 7], [13, 25, 37, 16, 23, 7], [13, 25, 37, 16, 18, 7], [13, 19, 37, 16, 18, 7], [13, 36, 37, 16, 1, 7], [13, 36, 37, 16, 18, 7], [13, 25, 37, 16, 18, 7], [13, 19, 37, 16, 23, 7], [13, 19, 37, 16, 23, 7], [13, 35, 37, 16, 10, 7], [13, 35, 37, 16, 23, 7], [13, 35, 37, 16, 1, 7], [13, 35, 37, 16, 10, 7], [13, 35, 37, 16, 3, 7], [13, 35, 37, 16, 3, 7], [13, 36, 37, 16, 23, 7], [13, 36, 37, 16, 18, 7], [13, 36, 37, 16, 18, 7], [13, 36, 37, 16, 1, 7], [13, 35, 37, 16, 18, 7], [13, 19, 37, 16, 18, 7], [13, 19, 37, 16, 10, 7], [13, 25, 37, 16, 1, 7], [13, 19, 37, 16, 10, 7], [13, 19, 37, 16, 3, 7], [13, 19, 37, 16, 1, 7], [13, 25, 37, 16, 10, 7], [13, 25, 37, 16, 1, 7], [13, 35, 37, 16, 18, 7], [13, 25, 37, 16, 18, 7], [13, 35, 37, 16, 6, 7], [13, 25, 37, 16, 1, 7], [13, 35, 37, 16, 10, 7], [13, 35, 37, 16, 3, 7], [13, 35, 37, 16, 3, 7], [13, 35, 37, 16, 23, 7], [13, 19, 37, 16, 3, 7], [13, 19, 37, 16, 3, 7], [13, 25, 37, 16, 1, 7], [13, 25, 37, 16, 1, 7], [13, 25, 37, 16, 1, 7], [13, 25, 37, 16, 18, 7], [13, 25, 37, 16, 23, 7], [13, 19, 37, 16, 3, 7], [13, 36, 37, 16, 1, 7], [13, 25, 37, 16, 10, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 18, 7], [13, 19, 37, 16, 10, 7], [13, 35, 37, 16, 3, 7], [13, 19, 37, 16, 3, 7], [13, 19, 37, 16, 23, 7], [13, 35, 37, 16, 1, 7], [13, 35, 37, 16, 23, 7], [13, 36, 37, 16, 3, 7], [13, 25, 37, 16, 1, 7], [13, 36, 37, 16, 3, 7], [13, 25, 37, 16, 18, 7], [13, 36, 37, 16, 6, 7], [13, 25, 37, 16, 1, 7], [13, 19, 37, 16, 6, 7], [13, 35, 37, 16, 10, 7], [13, 35, 37, 16, 1, 7], [13, 19, 37, 16, 3, 7], [13, 36, 37, 16, 3, 7], [13, 36, 37, 16, 6, 7], [13, 19, 37, 16, 1, 7], [13, 19, 37, 16, 6, 7], [13, 35, 37, 16, 23, 7], [13, 19, 37, 16, 3, 7], [13, 19, 37, 16, 1, 7], [13, 35, 37, 16, 6, 7], [13, 35, 37, 16, 3, 7], [13, 35, 37, 16, 6, 7], [13, 35, 37, 16, 6, 7], [13, 19, 37, 16, 18, 7], [13, 36, 37, 16, 10, 7], [13, 19, 37, 16, 10, 7], [13, 19, 37, 16, 23, 7], [13, 35, 37, 16, 23, 7], [13, 19, 37, 16, 18, 7], [13, 35, 37, 16, 1, 7], [13, 35, 37, 16, 18, 7], [13, 35, 37, 16, 1, 7], [13, 25, 37, 16, 1, 7], [13, 36, 37, 16, 1, 7], [13, 35, 37, 16, 1, 7], [13, 35, 37, 16, 10, 7], [13, 25, 37, 16, 1, 7], [13, 35, 37, 16, 23, 7], [13, 35, 37, 16, 6, 7], [13, 36, 37, 16, 6, 7], [13, 36, 37, 16, 23, 7], [13, 36, 37, 16, 1, 7], [13, 25, 37, 16, 6, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 1, 7], [13, 25, 37, 16, 18, 7], [13, 25, 37, 16, 10, 7], [13, 25, 37, 16, 23, 7], [13, 25, 37, 16, 6, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 1, 7], [13, 25, 37, 16, 3, 7], [13, 25, 37, 16, 18, 7], [13, 25, 37, 16, 6, 7], [13, 25, 37, 16, 6, 7], [13, 35, 37, 16, 1, 7], [13, 35, 37, 16, 1, 7], [13, 19, 37, 16, 23, 7], [13, 19, 37, 16, 23, 7], [13, 36, 37, 16, 3, 7], [13, 36, 37, 16, 1, 7], [13, 19, 37, 16, 10, 7], [13, 25, 37, 16, 1, 7], [13, 25, 37, 16, 23, 7], [13, 25, 37, 16, 3, 7], [13, 36, 37, 16, 18, 7], [13, 25, 37, 16, 1, 7], [13, 19, 37, 16, 1, 7], [13, 19, 37, 16, 3, 7], [13, 25, 37, 16, 23, 7], [13, 25, 37, 16, 3, 7], [13, 35, 37, 16, 23, 7], [13, 25, 37, 16, 18, 7], [13, 36, 37, 16, 23, 7], [13, 36, 37, 16, 3, 7], [13, 19, 37, 16, 23, 7], [13, 19, 37, 16, 23, 7], [13, 35, 37, 16, 18, 7], [13, 36, 37, 16, 23, 7], [13, 36, 37, 16, 3, 7], [13, 19, 37, 16, 18, 7], [13, 25, 37, 16, 3, 7], [13, 25, 37, 16, 3, 7], [13, 36, 37, 16, 6, 7], [13, 35, 37, 16, 10, 7], [13, 19, 37, 16, 10, 7], [13, 19, 37, 16, 10, 7], [13, 25, 37, 16, 3, 7], [13, 19, 37, 16, 23, 7], [13, 35, 37, 16, 6, 7], [13, 35, 37, 16, 1, 7], [13, 36, 37, 16, 10, 7], [13, 19, 37, 16, 6, 7], [13, 35, 37, 16, 10, 7], [13, 35, 37, 16, 10, 7], [13, 36, 37, 16, 1, 7], [13, 25, 37, 16, 18, 7], [13, 25, 37, 16, 18, 7], [13, 36, 37, 16, 18, 7], [13, 36, 37, 16, 6, 7], [13, 25, 37, 16, 23, 7], [13, 25, 37, 16, 10, 7], [13, 35, 37, 16, 3, 7], [13, 35, 37, 16, 1, 7], [13, 36, 37, 16, 10, 7], [13, 25, 37, 16, 3, 7], [13, 25, 37, 16, 23, 7], [13, 25, 37, 16, 23, 7], [13, 25, 37, 16, 10, 7], [13, 25, 37, 16, 6, 7], [13, 19, 37, 16, 3, 7], [13, 35, 37, 16, 10, 7], [13, 25, 37, 16, 18, 7], [13, 19, 37, 16, 23, 7], [13, 36, 37, 16, 6, 7], [13, 19, 37, 16, 3, 7], [13, 35, 37, 16, 23, 7], [13, 36, 37, 16, 18, 7], [13, 25, 37, 16, 18, 7], [13, 19, 37, 16, 3, 7], [13, 19, 37, 16, 18, 7], [13, 35, 37, 16, 6, 7], [13, 35, 37, 16, 18, 7], [13, 25, 37, 16, 3, 7], [13, 36, 37, 16, 3, 7], [13, 36, 37, 16, 1, 7], [13, 36, 37, 16, 10, 7], [13, 36, 37, 16, 10, 7], [13, 25, 37, 16, 3, 7], [13, 35, 37, 16, 1, 7], [13, 25, 37, 16, 10, 7], [13, 25, 37, 16, 1, 7], [13, 19, 37, 16, 1, 7], [13, 35, 37, 16, 10, 7], [13, 19, 37, 16, 23, 7], [13, 19, 37, 16, 1, 7], [13, 35, 37, 16, 1, 7], [13, 25, 37, 16, 18, 7], [13, 19, 37, 16, 10, 7], [13, 19, 37, 16, 23, 7], [13, 36, 37, 16, 18, 7], [13, 35, 37, 16, 6, 7], [13, 35, 37, 16, 3, 7], [13, 25, 37, 16, 3, 7], [13, 19, 37, 16, 1, 7], [13, 25, 37, 16, 3, 7], [13, 25, 37, 16, 18, 7], [13, 25, 37, 16, 23, 7], [13, 36, 37, 16, 23, 7], [13, 36, 37, 16, 3, 7], [13, 19, 37, 16, 10, 7], [13, 36, 37, 16, 3, 7], [13, 36, 37, 16, 10, 7], [13, 19, 37, 16, 18, 7], [13, 19, 37, 16, 10, 7], [13, 25, 37, 16, 23, 7], [13, 35, 37, 16, 3, 7], [13, 35, 37, 16, 18, 7], [13, 19, 37, 16, 10, 7], [13, 25, 37, 16, 6, 7], [13, 25, 37, 16, 10, 7], [13, 19, 37, 16, 3, 7], [13, 25, 37, 16, 6, 7], [13, 25, 37, 16, 10, 7], [13, 36, 37, 16, 1, 7], [13, 36, 37, 16, 1, 7], [13, 19, 37, 16, 3, 7], [13, 19, 37, 16, 23, 7], [13, 36, 37, 16, 10, 7], [13, 36, 37, 16, 23, 7], [13, 36, 37, 16, 3, 7], [13, 36, 37, 16, 6, 7], [13, 25, 37, 16, 18, 7], [13, 36, 37, 16, 1, 7], [13, 36, 37, 16, 1, 7], [13, 36, 37, 16, 6, 7], [13, 35, 37, 16, 23, 7], [13, 36, 37, 16, 6, 7], [13, 25, 37, 16, 10, 7], [13, 25, 37, 16, 18, 7], [13, 25, 37, 16, 6, 7], [13, 35, 37, 16, 18, 7], [13, 25, 37, 16, 23, 7], [13, 25, 37, 16, 10, 7], [13, 25, 37, 16, 6, 7], [13, 35, 37, 16, 6, 7], [13, 25, 37, 16, 10, 7], [13, 36, 37, 16, 6, 7], [13, 35, 37, 16, 6, 7], [13, 35, 37, 16, 23, 7], [13, 25, 37, 16, 18, 7], [13, 35, 37, 16, 6, 7], [13, 25, 37, 16, 23, 7], [13, 25, 37, 16, 10, 7], [13, 35, 37, 16, 1, 7], [13, 35, 37, 16, 18, 7], [13, 19, 37, 16, 1, 7], [13, 19, 37, 16, 18, 7], [13, 25, 37, 16, 1, 7], [13, 25, 37, 16, 6, 7], [13, 35, 37, 16, 10, 7], [13, 25, 37, 16, 23, 7], [13, 25, 37, 16, 23, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 10, 7], [13, 19, 37, 16, 6, 7], [13, 35, 37, 16, 18, 7], [13, 35, 37, 16, 1, 7], [13, 36, 37, 16, 6, 7], [13, 36, 37, 16, 6, 7], [13, 36, 37, 16, 6, 7], [13, 36, 37, 16, 23, 7], [13, 35, 37, 16, 10, 7], [13, 36, 37, 16, 3, 7], [13, 36, 37, 16, 18, 7], [13, 36, 37, 16, 10, 7], [13, 36, 37, 16, 1, 7], [13, 36, 37, 16, 3, 7], [13, 36, 37, 16, 1, 7], [13, 19, 37, 16, 1, 7], [13, 25, 37, 16, 23, 7], [13, 19, 37, 16, 1, 7], [13, 19, 37, 16, 18, 7], [13, 25, 37, 16, 18, 7], [13, 25, 37, 16, 3, 7], [13, 25, 37, 16, 10, 7], [13, 35, 37, 16, 23, 7], [13, 25, 37, 16, 10, 7], [13, 36, 37, 16, 1, 7], [13, 35, 37, 16, 1, 7], [13, 36, 37, 16, 18, 7], [13, 36, 37, 16, 18, 7], [13, 35, 37, 16, 1, 7], [13, 35, 37, 16, 18, 7], [13, 35, 37, 16, 6, 7], [13, 25, 37, 16, 3, 7], [13, 25, 37, 16, 3, 7], [13, 36, 37, 16, 3, 7], [13, 35, 37, 16, 6, 7], [13, 35, 37, 16, 10, 7], [13, 36, 37, 16, 18, 7], [13, 25, 37, 16, 6, 7], [13, 36, 37, 16, 18, 7], [13, 36, 37, 16, 10, 7], [13, 19, 37, 16, 3, 7], [13, 19, 37, 16, 3, 7], [13, 19, 37, 16, 3, 7], [13, 36, 37, 16, 6, 7], [13, 35, 37, 16, 23, 7], [13, 35, 37, 16, 10, 7], [13, 19, 37, 16, 6, 7], [13, 36, 37, 16, 3, 7], [13, 36, 37, 16, 6, 7], [13, 35, 37, 16, 1, 7], [13, 19, 37, 16, 18, 7], [13, 35, 37, 16, 18, 7], [13, 35, 37, 16, 1, 7], [13, 25, 37, 16, 10, 7], [13, 19, 37, 16, 18, 7], [13, 19, 37, 16, 10, 7], [13, 35, 37, 16, 18, 7], [13, 36, 37, 16, 10, 7], [13, 36, 37, 16, 10, 7], [13, 19, 37, 16, 1, 7], [13, 19, 37, 16, 10, 7], [13, 25, 37, 16, 6, 7], [13, 25, 37, 16, 10, 7], [13, 19, 37, 16, 23, 7], [13, 35, 37, 16, 18, 7], [13, 35, 37, 16, 18, 7], [13, 35, 37, 16, 1, 7], [13, 35, 37, 16, 1, 7], [13, 19, 37, 16, 3, 7], [13, 25, 37, 16, 18, 7], [13, 25, 37, 16, 23, 7], [13, 19, 37, 16, 23, 7], [13, 19, 37, 16, 1, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 3, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 18, 7], [13, 25, 37, 16, 6, 7], [13, 36, 37, 16, 6, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 23, 7], [13, 19, 37, 16, 1, 7], [13, 35, 37, 16, 10, 7], [13, 35, 37, 16, 3, 7], [13, 35, 37, 16, 18, 7], [13, 36, 37, 16, 23, 7], [13, 36, 37, 16, 3, 7], [13, 36, 37, 16, 6, 7], [13, 35, 37, 16, 6, 7], [13, 25, 37, 16, 6, 7], [13, 25, 37, 16, 3, 7], [13, 35, 37, 16, 23, 7], [13, 35, 37, 16, 10, 7], [13, 25, 37, 16, 18, 7], [13, 36, 37, 16, 3, 7], [13, 36, 37, 16, 23, 7], [13, 25, 37, 16, 6, 7], [13, 25, 37, 16, 3, 7], [13, 35, 37, 16, 1, 7], [13, 35, 37, 16, 3, 7], [13, 35, 37, 16, 6, 7], [13, 19, 37, 16, 3, 7], [13, 19, 37, 16, 18, 7], [13, 36, 37, 16, 1, 7], [13, 19, 37, 16, 1, 7], [13, 19, 37, 16, 10, 7], [13, 35, 37, 16, 3, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 10, 7], [13, 36, 37, 16, 1, 7], [13, 35, 37, 16, 1, 7], [13, 25, 37, 16, 10, 7], [13, 25, 37, 16, 18, 7], [13, 19, 37, 16, 6, 7], [13, 36, 37, 16, 23, 7], [13, 19, 37, 16, 18, 7], [13, 19, 37, 16, 23, 7], [13, 19, 37, 16, 1, 7], [13, 19, 37, 16, 23, 7], [13, 25, 37, 16, 18, 7], [13, 19, 37, 16, 23, 7], [13, 25, 37, 16, 10, 7], [13, 25, 37, 16, 1, 7], [13, 25, 37, 16, 1, 7], [13, 35, 37, 16, 23, 7], [13, 35, 37, 16, 23, 7], [13, 19, 37, 16, 18, 7], [13, 19, 37, 16, 23, 7], [13, 19, 37, 16, 18, 7], [13, 25, 37, 16, 18, 7], [13, 19, 37, 16, 1, 7], [13, 36, 37, 16, 3, 7], [13, 19, 37, 16, 10, 7], [13, 36, 37, 16, 23, 7], [13, 35, 37, 16, 6, 7], [13, 35, 37, 16, 6, 7], [13, 35, 37, 16, 6, 7], [13, 35, 37, 16, 6, 7], [13, 19, 37, 16, 23, 7], [13, 36, 37, 16, 23, 7], [13, 36, 37, 16, 10, 7], [13, 36, 37, 16, 10, 7], [13, 25, 37, 16, 10, 7], [13, 25, 37, 16, 18, 7], [13, 25, 37, 16, 23, 7], [13, 25, 37, 16, 18, 7], [13, 35, 37, 16, 1, 7], [13, 19, 37, 16, 18, 7], [13, 35, 37, 16, 6, 7], [13, 19, 37, 16, 18, 7], [13, 25, 37, 16, 23, 7], [13, 19, 37, 16, 3, 7], [13, 19, 37, 16, 23, 7], [13, 19, 37, 16, 23, 7], [13, 35, 37, 16, 6, 7], [13, 25, 37, 16, 18, 7], [13, 25, 37, 16, 6, 7], [13, 25, 37, 16, 3, 7], [13, 25, 37, 16, 6, 7], [13, 36, 37, 16, 23, 7], [13, 36, 37, 16, 10, 7], [13, 36, 37, 16, 23, 7], [13, 36, 37, 16, 23, 7], [13, 25, 37, 16, 3, 7], [13, 36, 37, 16, 6, 7], [13, 35, 37, 16, 3, 7], [13, 35, 37, 16, 3, 7], [13, 36, 37, 16, 18, 7], [13, 36, 37, 16, 10, 7], [13, 19, 37, 16, 23, 7], [13, 19, 37, 16, 6, 7], [13, 25, 37, 16, 1, 7], [13, 25, 37, 16, 1, 7], [13, 36, 37, 16, 10, 7], [13, 36, 37, 16, 18, 7], [13, 36, 37, 16, 10, 7], [13, 36, 37, 16, 18, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 18, 7], [13, 35, 37, 16, 18, 7], [13, 35, 37, 16, 3, 7], [13, 19, 37, 16, 6, 7], [13, 36, 37, 16, 6, 7], [13, 35, 37, 16, 18, 7], [13, 25, 37, 16, 23, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 10, 7], [13, 25, 37, 16, 1, 7], [13, 25, 37, 16, 23, 7], [13, 19, 37, 16, 23, 7], [13, 36, 37, 16, 18, 7], [13, 36, 37, 16, 23, 7], [13, 36, 37, 16, 23, 7], [13, 35, 37, 16, 23, 7], [13, 25, 37, 16, 6, 7], [13, 19, 37, 16, 3, 7], [13, 35, 37, 16, 3, 7], [13, 19, 37, 16, 10, 7], [13, 36, 37, 16, 23, 7], [13, 36, 37, 16, 18, 7], [13, 25, 37, 16, 1, 7], [13, 19, 37, 16, 6, 7], [13, 25, 37, 16, 1, 7], [13, 35, 37, 16, 6, 7], [13, 36, 37, 16, 18, 7], [13, 36, 37, 16, 10, 7], [13, 36, 37, 16, 10, 7], [13, 35, 37, 16, 1, 7], [13, 36, 37, 16, 18, 7], [13, 35, 37, 16, 23, 7], [13, 35, 37, 16, 6, 7], [13, 35, 37, 16, 18, 7], [13, 35, 37, 16, 6, 7], [13, 35, 37, 16, 18, 7], [13, 36, 37, 16, 1, 7], [13, 36, 37, 16, 3, 7], [13, 36, 37, 16, 6, 7], [13, 25, 37, 16, 18, 7], [13, 25, 37, 16, 23, 7], [13, 36, 37, 16, 23, 7], [13, 19, 37, 16, 10, 7], [13, 19, 37, 16, 6, 7], [13, 35, 37, 16, 10, 7], [13, 25, 37, 16, 18, 7], [13, 19, 37, 16, 23, 7], [13, 19, 37, 16, 10, 7], [13, 19, 37, 16, 3, 7], [13, 36, 37, 16, 23, 7], [13, 35, 37, 16, 23, 7], [13, 19, 37, 16, 1, 7], [13, 25, 37, 16, 1, 7], [13, 25, 37, 16, 10, 7], [13, 35, 37, 16, 23, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 18, 7], [13, 19, 37, 16, 18, 7], [13, 25, 37, 16, 23, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 10, 7], [13, 36, 37, 16, 3, 7], [13, 35, 37, 16, 18, 7], [13, 35, 37, 16, 18, 7], [13, 36, 37, 16, 23, 7], [13, 25, 37, 16, 3, 7], [13, 35, 37, 16, 6, 7], [13, 36, 37, 16, 1, 7], [13, 25, 37, 16, 3, 7], [13, 25, 37, 16, 3, 7], [13, 25, 37, 16, 23, 7], [13, 19, 37, 16, 18, 7], [13, 25, 37, 16, 1, 7], [13, 36, 37, 16, 6, 7], [13, 36, 37, 16, 23, 7], [13, 36, 37, 16, 10, 7], [13, 25, 37, 16, 6, 7], [13, 36, 37, 16, 23, 7], [13, 36, 37, 16, 6, 7], [13, 36, 37, 16, 1, 7], [13, 19, 37, 16, 10, 7], [13, 36, 37, 16, 6, 7], [13, 25, 37, 16, 1, 7], [13, 25, 37, 16, 6, 7], [13, 25, 37, 16, 6, 7], [13, 36, 37, 16, 23, 7], [13, 36, 37, 16, 10, 7], [13, 36, 37, 16, 6, 7], [13, 35, 37, 16, 23, 7], [13, 25, 37, 16, 23, 7], [13, 19, 37, 16, 3, 7], [13, 19, 37, 16, 1, 7], [13, 19, 37, 16, 1, 7], [13, 19, 37, 16, 1, 7], [13, 35, 37, 16, 10, 7], [13, 35, 37, 16, 10, 7], [13, 25, 37, 16, 6, 7], [13, 25, 37, 16, 10, 7], [13, 25, 37, 16, 3, 7], [13, 35, 37, 16, 18, 7], [13, 19, 37, 16, 3, 7], [13, 35, 37, 16, 23, 7], [13, 35, 37, 16, 6, 7], [13, 19, 37, 16, 1, 7], [13, 35, 37, 16, 18, 7], [13, 35, 37, 16, 10, 7], [13, 19, 37, 16, 1, 7], [13, 19, 37, 16, 23, 7], [13, 19, 37, 16, 23, 7], [13, 35, 37, 16, 18, 7], [13, 35, 37, 16, 18, 7], [13, 25, 37, 16, 3, 7], [13, 25, 37, 16, 23, 7], [13, 19, 37, 16, 10, 7], [13, 19, 37, 16, 18, 7], [13, 36, 37, 16, 18, 7], [13, 35, 37, 16, 18, 7], [13, 35, 37, 16, 10, 7], [13, 19, 37, 16, 10, 7], [13, 19, 37, 16, 1, 7], [13, 25, 37, 16, 1, 7], [13, 35, 37, 16, 18, 7], [13, 35, 37, 16, 18, 7], [13, 19, 37, 16, 3, 7], [13, 19, 37, 16, 1, 7], [13, 36, 37, 16, 6, 7], [13, 36, 37, 16, 1, 7], [13, 36, 37, 16, 6, 7], [13, 35, 37, 16, 3, 7], [13, 25, 37, 16, 18, 7], [13, 36, 37, 16, 18, 7], [13, 36, 37, 16, 3, 7], [13, 25, 37, 16, 1, 7], [13, 25, 37, 16, 6, 7], [13, 25, 37, 16, 1, 7], [13, 35, 37, 16, 10, 7], [13, 35, 37, 16, 3, 7], [13, 35, 37, 16, 1, 7], [13, 35, 37, 16, 18, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 23, 7], [13, 25, 37, 16, 18, 7], [13, 35, 37, 16, 6, 7], [13, 19, 37, 16, 1, 7], [13, 35, 37, 16, 18, 7], [13, 35, 37, 16, 18, 7], [13, 25, 37, 16, 1, 7], [13, 35, 37, 16, 1, 7], [13, 25, 37, 16, 10, 7], [13, 19, 37, 16, 10, 7], [13, 19, 37, 16, 6, 7], [13, 36, 37, 16, 1, 7], [13, 19, 37, 16, 6, 7], [13, 25, 37, 16, 18, 7], [13, 35, 37, 16, 6, 7], [13, 35, 37, 16, 3, 7], [13, 25, 37, 16, 23, 7], [13, 35, 37, 16, 1, 7], [13, 35, 37, 16, 10, 7], [13, 25, 37, 16, 1, 7], [13, 25, 37, 16, 6, 7], [13, 19, 37, 16, 3, 7], [13, 19, 37, 16, 23, 7], [13, 36, 37, 16, 1, 7], [13, 36, 37, 16, 6, 7], [13, 25, 37, 16, 18, 7], [13, 36, 37, 16, 3, 7], [13, 36, 37, 16, 10, 7], [13, 36, 37, 16, 1, 7], [13, 36, 37, 16, 1, 7], [13, 25, 37, 16, 18, 7], [13, 35, 37, 16, 10, 7], [13, 19, 37, 16, 18, 7], [13, 25, 37, 16, 1, 7], [13, 36, 37, 16, 1, 7], [13, 35, 37, 16, 3, 7], [13, 36, 37, 16, 18, 7], [13, 35, 37, 16, 1, 7], [13, 36, 37, 16, 3, 7], [13, 35, 37, 16, 3, 7], [13, 35, 37, 16, 6, 7], [13, 19, 37, 16, 1, 7], [13, 19, 37, 16, 10, 7], [13, 25, 37, 16, 1, 7], [13, 25, 37, 16, 18, 7], [13, 19, 37, 16, 3, 7], [13, 36, 37, 16, 6, 7], [13, 36, 37, 16, 3, 7], [13, 25, 37, 16, 1, 7], [13, 35, 37, 16, 6, 7], [13, 35, 37, 16, 1, 7], [13, 35, 37, 16, 10, 7], [13, 36, 37, 16, 10, 7], [13, 19, 37, 16, 18, 7], [13, 19, 37, 16, 3, 7], [13, 19, 37, 16, 1, 7], [13, 25, 37, 16, 1, 7], [13, 25, 37, 16, 18, 7], [13, 36, 37, 16, 1, 7], [13, 35, 37, 16, 10, 7], [13, 36, 37, 16, 10, 7], [13, 19, 37, 16, 1, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 3, 7], [13, 35, 37, 16, 10, 7], [13, 25, 37, 16, 18, 7], [13, 19, 37, 16, 3, 7], [13, 19, 37, 16, 18, 7], [13, 35, 37, 16, 6, 7], [13, 25, 37, 16, 10, 7], [13, 19, 37, 16, 18, 7], [13, 19, 37, 16, 23, 7], [13, 19, 37, 16, 3, 7], [13, 36, 37, 16, 1, 7], [13, 19, 37, 16, 10, 7], [13, 19, 37, 16, 10, 7], [13, 35, 37, 16, 1, 7], [13, 19, 37, 16, 10, 7], [13, 19, 37, 16, 10, 7], [13, 19, 37, 16, 6, 7], [13, 36, 37, 16, 18, 7], [13, 36, 37, 16, 10, 7], [13, 25, 37, 16, 6, 7], [13, 25, 37, 16, 23, 7], [13, 25, 37, 16, 23, 7], [13, 19, 37, 16, 3, 7], [13, 35, 37, 16, 1, 7], [13, 25, 37, 16, 10, 7], [13, 35, 37, 16, 1, 7], [13, 25, 37, 16, 18, 7], [13, 36, 37, 16, 6, 7], [13, 36, 37, 16, 18, 7], [13, 36, 37, 16, 3, 7], [13, 36, 37, 16, 3, 7], [13, 25, 37, 16, 10, 7], [13, 36, 37, 16, 6, 7], [13, 36, 37, 16, 3, 7], [13, 35, 37, 16, 23, 7], [13, 36, 37, 16, 1, 7], [13, 35, 37, 16, 10, 7], [13, 35, 37, 16, 23, 7], [13, 19, 37, 16, 10, 7], [13, 35, 37, 16, 10, 7], [13, 25, 37, 16, 1, 7], [13, 36, 37, 16, 23, 7], [13, 25, 37, 16, 10, 7], [13, 36, 37, 16, 3, 7], [13, 25, 37, 16, 1, 7], [13, 25, 37, 16, 10, 7], [13, 36, 37, 16, 10, 7], [13, 36, 37, 16, 23, 7], [13, 36, 37, 16, 6, 7], [13, 19, 37, 16, 10, 7], [13, 19, 37, 16, 10, 7], [13, 36, 37, 16, 6, 7], [13, 36, 37, 16, 23, 7], [13, 25, 37, 16, 23, 7], [13, 25, 37, 16, 18, 7], [13, 19, 37, 16, 23, 7], [13, 19, 37, 16, 18, 7], [13, 19, 37, 16, 18, 7], [13, 36, 37, 16, 23, 7], [13, 36, 37, 16, 18, 7], [13, 36, 37, 16, 3, 7], [13, 25, 37, 16, 3, 7], [13, 25, 37, 16, 3, 7], [13, 19, 37, 16, 18, 7], [13, 35, 37, 16, 23, 7], [13, 35, 37, 16, 23, 7], [13, 19, 37, 16, 3, 7], [13, 36, 37, 16, 1, 7], [13, 35, 37, 16, 3, 7], [13, 35, 37, 16, 10, 7], [13, 19, 37, 16, 6, 7], [13, 36, 37, 16, 3, 7], [13, 36, 37, 16, 23, 7], [13, 25, 37, 16, 23, 7], [13, 25, 37, 16, 1, 7], [13, 36, 37, 16, 18, 7], [13, 36, 37, 16, 18, 7], [13, 35, 37, 16, 10, 7], [13, 35, 37, 16, 18, 7], [13, 35, 37, 16, 18, 7], [13, 25, 37, 16, 6, 7], [13, 25, 37, 16, 6, 7], [13, 25, 37, 16, 10, 7], [13, 25, 37, 16, 23, 7], [13, 35, 37, 16, 3, 7], [13, 35, 37, 16, 10, 7], [13, 19, 37, 16, 1, 7], [13, 25, 37, 16, 1, 7], [13, 19, 37, 16, 23, 7], [13, 35, 37, 16, 1, 7], [13, 25, 37, 16, 23, 7], [13, 25, 37, 16, 3, 7], [13, 36, 37, 16, 3, 7], [13, 25, 37, 16, 18, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 10, 7], [13, 25, 37, 16, 23, 7], [13, 19, 37, 16, 18, 7], [13, 25, 37, 16, 18, 7], [13, 19, 37, 16, 18, 7], [13, 25, 37, 16, 1, 7], [13, 36, 37, 16, 23, 7], [13, 35, 37, 16, 18, 7], [13, 35, 37, 16, 10, 7], [13, 25, 37, 16, 23, 7], [13, 36, 37, 16, 18, 7], [13, 19, 37, 16, 1, 7], [13, 19, 37, 16, 3, 7], [13, 35, 37, 16, 10, 7], [13, 35, 37, 16, 3, 7], [13, 35, 37, 16, 1, 7], [13, 36, 37, 16, 1, 7], [13, 36, 37, 16, 1, 7], [13, 25, 37, 16, 10, 7], [13, 35, 37, 16, 1, 7], [13, 35, 37, 16, 23, 7], [13, 35, 37, 16, 1, 7], [13, 25, 37, 16, 10, 7], [13, 19, 37, 16, 1, 7], [13, 19, 37, 16, 3, 7], [13, 19, 37, 16, 1, 7], [13, 19, 37, 16, 6, 7], [13, 25, 37, 16, 3, 7], [13, 25, 37, 16, 10, 7], [13, 25, 37, 16, 6, 7], [13, 35, 37, 16, 3, 7], [13, 25, 37, 16, 10, 7], [13, 35, 37, 16, 1, 7], [13, 35, 37, 16, 3, 7], [13, 35, 37, 16, 3, 7], [13, 19, 37, 16, 23, 7], [13, 36, 37, 16, 1, 7], [13, 25, 37, 16, 23, 7], [13, 36, 37, 16, 18, 7], [13, 35, 37, 16, 1, 7], [13, 35, 37, 16, 18, 7], [13, 36, 37, 16, 6, 7], [13, 25, 37, 16, 23, 7], [13, 35, 37, 16, 6, 7], [13, 36, 37, 16, 18, 7], [13, 25, 37, 16, 23, 7], [13, 36, 37, 16, 23, 7], [13, 36, 37, 16, 1, 7], [13, 36, 37, 16, 18, 7], [13, 19, 37, 16, 10, 7], [13, 19, 37, 16, 23, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 23, 7], [13, 35, 37, 16, 1, 7], [13, 25, 37, 16, 18, 7], [13, 25, 37, 16, 1, 7], [13, 19, 37, 16, 1, 7], [13, 35, 37, 16, 3, 7], [13, 35, 37, 16, 1, 7], [13, 19, 37, 16, 1, 7], [13, 36, 37, 16, 6, 7], [13, 35, 37, 16, 3, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 3, 7], [13, 19, 37, 16, 3, 7], [13, 25, 37, 16, 6, 7], [13, 19, 37, 16, 18, 7], [13, 25, 37, 16, 10, 7], [13, 19, 37, 16, 23, 7], [13, 25, 37, 16, 18, 7], [13, 25, 37, 16, 3, 7], [13, 19, 37, 16, 10, 7], [13, 25, 37, 16, 3, 7], [13, 25, 37, 16, 6, 7], [13, 36, 37, 16, 3, 7], [13, 36, 37, 16, 3, 7], [13, 19, 37, 16, 18, 7], [13, 25, 37, 16, 1, 7], [13, 19, 37, 16, 3, 7], [13, 35, 37, 16, 1, 7], [13, 36, 37, 16, 1, 7], [13, 25, 37, 16, 18, 7], [13, 25, 37, 16, 3, 7], [13, 25, 37, 16, 18, 7], [13, 19, 37, 16, 18, 7], [13, 35, 37, 16, 23, 7], [13, 35, 37, 16, 10, 7], [13, 36, 37, 16, 23, 7], [13, 35, 37, 16, 23, 7], [13, 35, 37, 16, 23, 7], [13, 25, 37, 16, 23, 7], [13, 19, 37, 16, 3, 7], [13, 36, 37, 16, 10, 7], [13, 35, 37, 16, 1, 7], [13, 36, 37, 16, 3, 7], [13, 36, 37, 16, 3, 7], [13, 35, 37, 16, 18, 7], [13, 25, 37, 16, 23, 7], [13, 35, 37, 16, 23, 7], [13, 19, 37, 16, 18, 7], [13, 19, 37, 16, 18, 7], [13, 19, 37, 16, 18, 7], [13, 25, 37, 16, 1, 7], [13, 36, 37, 16, 6, 7], [13, 36, 37, 16, 10, 7], [13, 36, 37, 16, 3, 7], [13, 36, 37, 16, 1, 7], [13, 25, 37, 16, 1, 7], [13, 19, 37, 16, 10, 7], [13, 35, 37, 16, 1, 7], [13, 19, 37, 16, 6, 7], [13, 35, 37, 16, 3, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 3, 7], [13, 19, 37, 16, 10, 7], [13, 19, 37, 16, 1, 7], [13, 36, 37, 16, 3, 7], [13, 35, 37, 16, 10, 7], [13, 36, 37, 16, 1, 7], [13, 36, 37, 16, 3, 7], [13, 35, 37, 16, 6, 7], [13, 35, 37, 16, 3, 7], [13, 36, 37, 16, 6, 7], [13, 25, 37, 16, 1, 7], [13, 25, 37, 16, 1, 7], [13, 36, 37, 16, 10, 7], [13, 25, 37, 16, 6, 7], [13, 25, 37, 16, 6, 7], [13, 35, 37, 16, 23, 7], [13, 35, 37, 16, 23, 7], [13, 35, 37, 16, 10, 7], [13, 25, 37, 16, 10, 7], [13, 25, 37, 16, 1, 7], [13, 19, 37, 16, 6, 7], [13, 19, 37, 16, 23, 7], [13, 25, 37, 16, 10, 7], [13, 19, 37, 16, 10, 7], [13, 25, 37, 16, 6, 7], ...]
len(train_question_sequence)
10000
train_answers
['no', 'no', 'no', 'yes', 'yes', 'yes', 'no', 'no', 'no', 'yes', 'yes', 'yes', 'yes', 'no', 'yes', 'yes', 'no', 'yes', 'yes', 'yes', 'no', 'yes', 'no', 'no', 'no', 'no', 'yes', 'no', 'no', 'no', 'yes', 'yes', 'no', 'yes', 'no', 'no', 'no', 'no', 'yes', 'no', 'no', 'yes', 'no', 'no', 'no', 'no', 'yes', 'yes', 'no', 'no', 'yes', 'yes', 'yes', 'yes', 'no', 'yes', 'no', 'yes', 'no', 'yes', 'no', 'no', 'no', 'no', 'yes', 'yes', 'yes', 'no', 'yes', 'no', 'no', 'yes', 'yes', 'yes', 'no', 'no', 'no', 'no', 'no', 'no', 'yes', 'yes', 'yes', 'yes', 'no', 'yes', 'yes', 'no', 'yes', 'no', 'no', 'yes', 'no', 'no', 'yes', 'yes', 'no', 'yes', 'yes', 'no', 'no', 'no', 'yes', 'yes', 'no', 'no', 'no', 'yes', 'no', 'no', 'yes', 'yes', 'no', 'no', 'yes', 'no', 'yes', 'yes', 'yes', 'no', 'no', 'yes', 'yes', 'no', 'no', 'no', 'yes', 'no', 'no', 'yes', 'no', 'yes', 'no', 'yes', 'yes', 'yes', 'yes', 'yes', 'no', 'no', 'no', 'yes', 'yes', 'yes', 'yes', 'yes', 'yes', 'no', 'yes', 'no', 'yes', 'yes', 'no', 'no', 'no', 'yes', 'no', 'no', 'yes', 'yes', 'yes', 'no', 'yes', 'yes', 'no', 'yes', 'yes', 'yes', 'yes', 'yes', 'no', 'no', 'no', 'yes', 'yes', 'no', 'no', 'no', 'no', 'yes', 'no', 'yes', 'no', 'no', 'yes', 'no', 'yes', 'no', 'no', 'no', 'no', 'no', 'yes', 'yes', 'no', 'yes', 'no', 'no', 'no', 'yes', 'no', 'yes', 'yes', 'yes', 'yes', 'yes', 'yes', 'no', 'no', 'no', 'yes', 'no', 'yes', 'no', 'yes', 'yes', 'no', 'no', 'no', 'no', 'no', 'no', 'yes', 'no', 'yes', 'no', 'no', 'yes', 'no', 'yes', 'yes', 'yes', 'yes', 'yes', 'no', 'yes', 'yes', 'no', 'no', 'no', 'no', 'yes', 'no', 'no', 'yes', 'yes', 'no', 'yes', 'yes', 'no', 'no', 'no', 'no', 'no', 'yes', 'no', 'no', 'yes', 'yes', 'yes', 'yes', 'no', 'yes', 'yes', 'yes', 'no', 'no', 'yes', 'yes', 'yes', 'yes', 'yes', 'no', 'yes', 'no', 'no', 'no', 'no', 'yes', 'yes', 'yes', 'yes', 'yes', 'yes', 'no', 'yes', 'yes', 'yes', 'yes', 'yes', 'yes', 'no', 'yes', 'yes', 'no', 'yes', 'no', 'yes', 'no', 'yes', 'yes', 'no', 'yes', 'no', 'yes', 'yes', 'no', 'yes', 'no', 'no', 'yes', 'yes', 'yes', 'no', 'no', 'yes', 'no', 'yes', 'yes', 'no', 'no', 'yes', 'no', 'no', 'yes', 'yes', 'no', 'yes', 'no', 'no', 'no', 'no', 'yes', 'yes', 'no', 'yes', 'no', 'no', 'no', 'no', 'yes', 'yes', 'no', 'no', 'yes', 'yes', 'no', 'no', 'no', 'yes', 'no', 'yes', 'no', 'no', 'no', 'yes', 'yes', 'no', 'yes', 'no', 'yes', 'yes', 'no', 'no', 'yes', 'yes', 'no', 'yes', 'yes', 'no', 'yes', 'no', 'no', 'yes', 'no', 'yes', 'no', 'yes', 'yes', 'yes', 'yes', 'yes', 'yes', 'yes', 'yes', 'no', 'no', 'no', 'yes', 'no', 'yes', 'yes', 'no', 'yes', 'yes', 'yes', 'no', 'no', 'yes', 'no', 'no', 'no', 'yes', 'yes', 'no', 'no', 'no', 'yes', 'no', 'yes', 'yes', 'no', 'yes', 'yes', 'no', 'yes', 'no', 'yes', 'yes', 'no', 'yes', 'yes', 'no', 'no', 'no', 'yes', 'no', 'no', 'no', 'yes', 'no', 'yes', 'no', 'yes', 'no', 'no', 'no', 'yes', 'no', 'yes', 'no', 'yes', 'yes', 'no', 'no', 'no', 'no', 'no', 'yes', 'no', 'yes', 'yes', 'no', 'yes', 'no', 'no', 'yes', 'no', 'no', 'yes', 'no', 'no', 'yes', 'no', 'no', 'no', 'yes', 'no', 'no', 'no', 'no', 'yes', 'no', 'no', 'no', 'yes', 'no', 'no', 'no', 'yes', 'no', 'yes', 'yes', 'no', 'no', 'no', 'no', 'yes', 'no', 'yes', 'yes', 'no', 'no', 'yes', 'no', 'no', 'no', 'no', 'no', 'yes', 'no', 'no', 'yes', 'no', 'yes', 'yes', 'yes', 'yes', 'no', 'no', 'yes', 'yes', 'no', 'no', 'no', 'yes', 'no', 'yes', 'yes', 'no', 'no', 'no', 'yes', 'yes', 'no', 'no', 'no', 'no', 'yes', 'yes', 'yes', 'yes', 'no', 'no', 'yes', 'no', 'yes', 'no', 'no', 'no', 'yes', 'no', 'yes', 'no', 'yes', 'yes', 'yes', 'yes', 'yes', 'yes', 'no', 'yes', 'yes', 'no', 'yes', 'no', 'no', 'yes', 'yes', 'no', 'no', 'yes', 'no', 'yes', 'no', 'yes', 'no', 'yes', 'yes', 'no', 'yes', 'no', 'no', 'yes', 'no', 'no', 'yes', 'yes', 'yes', 'yes', 'no', 'yes', 'yes', 'no', 'no', 'no', 'no', 'yes', 'no', 'yes', 'yes', 'yes', 'no', 'no', 'no', 'yes', 'yes', 'no', 'no', 'yes', 'no', 'no', 'yes', 'yes', 'no', 'yes', 'yes', 'no', 'no', 'yes', 'yes', 'yes', 'no', 'no', 'yes', 'no', 'yes', 'no', 'no', 'yes', 'yes', 'yes', 'no', 'no', 'no', 'no', 'no', 'no', 'yes', 'no', 'yes', 'no', 'yes', 'yes', 'yes', 'yes', 'no', 'yes', 'yes', 'no', 'no', 'yes', 'no', 'yes', 'no', 'no', 'no', 'no', 'no', 'yes', 'yes', 'yes', 'no', 'yes', 'yes', 'no', 'yes', 'yes', 'no', 'yes', 'yes', 'no', 'no', 'yes', 'yes', 'no', 'no', 'yes', 'no', 'yes', 'no', 'no', 'no', 'yes', 'yes', 'yes', 'no', 'no', 'yes', 'no', 'yes', 'no', 'no', 'yes', 'no', 'yes', 'yes', 'no', 'yes', 'no', 'yes', 'no', 'no', 'yes', 'yes', 'no', 'no', 'no', 'yes', 'yes', 'no', 'yes', 'no', 'no', 'yes', 'no', 'yes', 'yes', 'no', 'no', 'yes', 'no', 'no', 'yes', 'no', 'no', 'yes', 'yes', 'no', 'no', 'no', 'no', 'no', 'no', 'yes', 'no', 'no', 'yes', 'yes', 'no', 'yes', 'yes', 'yes', 'yes', 'yes', 'yes', 'no', 'no', 'no', 'yes', 'no', 'yes', 'yes', 'no', 'yes', 'yes', 'no', 'yes', 'yes', 'yes', 'no', 'no', 'yes', 'no', 'yes', 'yes', 'no', 'yes', 'no', 'no', 'no', 'yes', 'yes', 'yes', 'yes', 'yes', 'no', 'no', 'yes', 'no', 'yes', 'no', 'yes', 'yes', 'no', 'yes', 'no', 'yes', 'no', 'yes', 'yes', 'yes', 'yes', 'yes', 'yes', 'no', 'no', 'yes', 'yes', 'no', 'yes', 'no', 'yes', 'no', 'yes', 'no', 'no', 'no', 'no', 'no', 'no', 'yes', 'yes', 'yes', 'no', 'no', 'yes', 'no', 'yes', 'yes', 'yes', 'yes', 'yes', 'no', 'yes', 'yes', 'no', 'no', 'yes', 'yes', 'no', 'no', 'yes', 'no', 'no', 'yes', 'no', 'yes', 'yes', 'yes', 'yes', 'yes', 'yes', 'no', 'yes', 'no', 'no', 'no', 'no', 'no', 'no', 'yes', 'yes', 'yes', 'no', 'yes', 'yes', 'yes', 'yes', 'no', 'yes', 'no', 'no', 'yes', 'yes', 'no', 'yes', 'no', 'yes', 'yes', 'no', 'yes', 'no', 'yes', 'yes', 'yes', 'yes', 'yes', 'no', 'no', 'no', 'no', 'yes', 'no', 'no', 'yes', 'no', 'yes', 'yes', 'yes', 'yes', 'yes', 'no', 'no', 'no', 'no', 'yes', 'yes', 'no', 'yes', 'yes', 'yes', 'yes', 'yes', 'yes', 'yes', 'yes', 'no', 'no', 'no', 'no', 'no', 'yes', 'no', 'yes', 'yes', 'no', 'yes', 'no', 'yes', 'yes', 'yes', 'yes', 'yes', 'yes', 'no', 'no', 'yes', 'no', 'no', 'yes', 'no', 'yes', 'yes', 'yes', 'no', 'no', 'yes', 'yes', 'no', 'yes', 'no', 'no', 'yes', 'no', 'no', 'no', 'no', 'yes', 'yes', 'yes', 'no', 'no', 'no', 'no', 'yes', 'yes', 'yes', 'yes', 'yes', 'no', 'yes', 'yes', 'yes', 'yes', 'yes', 'yes', 'yes', 'yes', 'no', 'yes', 'yes', 'yes', 'yes', 'yes', 'yes', 'yes', 'no', 'yes', 'yes', 'yes', 'no', 'yes', 'yes', 'yes', 'no', 'yes', 'no', 'no', 'no', 'no', 'no', 'no', 'no', 'no', 'yes', 'yes', 'no', 'yes', 'yes', 'yes', 'yes', 'no', 'no', 'yes', 'no', 'yes', 'yes', 'no', 'no', ...]
len(train_answers)
10000
train_answers_sequence
[[15], [15], [15], [34], [34], [34], [15], [15], [15], [34], [34], [34], [34], [15], [34], [34], [15], [34], [34], [34], [15], [34], [15], [15], [15], [15], [34], [15], [15], [15], [34], [34], [15], [34], [15], [15], [15], [15], [34], [15], [15], [34], [15], [15], [15], [15], [34], [34], [15], [15], [34], [34], [34], [34], [15], [34], [15], [34], [15], [34], [15], [15], [15], [15], [34], [34], [34], [15], [34], [15], [15], [34], [34], [34], [15], [15], [15], [15], [15], [15], [34], [34], [34], [34], [15], [34], [34], [15], [34], [15], [15], [34], [15], [15], [34], [34], [15], [34], [34], [15], [15], [15], [34], [34], [15], [15], [15], [34], [15], [15], [34], [34], [15], [15], [34], [15], [34], [34], [34], [15], [15], [34], [34], [15], [15], [15], [34], [15], [15], [34], [15], [34], [15], [34], [34], [34], [34], [34], [15], [15], [15], [34], [34], [34], [34], [34], [34], [15], [34], [15], [34], [34], [15], [15], [15], [34], [15], [15], [34], [34], [34], [15], [34], [34], [15], [34], [34], [34], [34], [34], [15], [15], [15], [34], [34], [15], [15], [15], [15], [34], [15], [34], [15], [15], [34], [15], [34], [15], [15], [15], [15], [15], [34], [34], [15], [34], [15], [15], [15], [34], [15], [34], [34], [34], [34], [34], [34], [15], [15], [15], [34], [15], [34], [15], [34], [34], [15], [15], [15], [15], [15], [15], [34], [15], [34], [15], [15], [34], [15], [34], [34], [34], [34], [34], [15], [34], [34], [15], [15], [15], [15], [34], [15], [15], [34], [34], [15], [34], [34], [15], [15], [15], [15], [15], [34], [15], [15], [34], [34], [34], [34], [15], [34], [34], [34], [15], [15], [34], [34], [34], [34], [34], [15], [34], [15], [15], [15], [15], [34], [34], [34], [34], [34], [34], [15], [34], [34], [34], [34], [34], [34], [15], [34], [34], [15], [34], [15], [34], [15], [34], [34], [15], [34], [15], [34], [34], [15], [34], [15], [15], [34], [34], [34], [15], [15], [34], [15], [34], [34], [15], [15], [34], [15], [15], [34], [34], [15], [34], [15], [15], [15], [15], [34], [34], [15], [34], [15], [15], [15], [15], [34], [34], [15], [15], [34], [34], [15], [15], [15], [34], [15], [34], [15], [15], [15], [34], [34], [15], [34], [15], [34], [34], [15], [15], [34], [34], [15], [34], [34], [15], [34], [15], [15], [34], [15], [34], [15], [34], [34], [34], [34], [34], [34], [34], [34], [15], [15], [15], [34], [15], [34], [34], [15], [34], [34], [34], [15], [15], [34], [15], [15], [15], [34], [34], [15], [15], [15], [34], [15], [34], [34], [15], [34], [34], [15], [34], [15], [34], [34], [15], [34], [34], [15], [15], [15], [34], [15], [15], [15], [34], [15], [34], [15], [34], [15], [15], [15], [34], [15], [34], [15], [34], [34], [15], [15], [15], [15], [15], [34], [15], [34], [34], [15], [34], [15], [15], [34], [15], [15], [34], [15], [15], [34], [15], [15], [15], [34], [15], [15], [15], [15], [34], [15], [15], [15], [34], [15], [15], [15], [34], [15], [34], [34], [15], [15], [15], [15], [34], [15], [34], [34], [15], [15], [34], [15], [15], [15], [15], [15], [34], [15], [15], [34], [15], [34], [34], [34], [34], [15], [15], [34], [34], [15], [15], [15], [34], [15], [34], [34], [15], [15], [15], [34], [34], [15], [15], [15], [15], [34], [34], [34], [34], [15], [15], [34], [15], [34], [15], [15], [15], [34], [15], [34], [15], [34], [34], [34], [34], [34], [34], [15], [34], [34], [15], [34], [15], [15], [34], [34], [15], [15], [34], [15], [34], [15], [34], [15], [34], [34], [15], [34], [15], [15], [34], [15], [15], [34], [34], [34], [34], [15], [34], [34], [15], [15], [15], [15], [34], [15], [34], [34], [34], [15], [15], [15], [34], [34], [15], [15], [34], [15], [15], [34], [34], [15], [34], [34], [15], [15], [34], [34], [34], [15], [15], [34], [15], [34], [15], [15], [34], [34], [34], [15], [15], [15], [15], [15], [15], [34], [15], [34], [15], [34], [34], [34], [34], [15], [34], [34], [15], [15], [34], [15], [34], [15], [15], [15], [15], [15], [34], [34], [34], [15], [34], [34], [15], [34], [34], [15], [34], [34], [15], [15], [34], [34], [15], [15], [34], [15], [34], [15], [15], [15], [34], [34], [34], [15], [15], [34], [15], [34], [15], [15], [34], [15], [34], [34], [15], [34], [15], [34], [15], [15], [34], [34], [15], [15], [15], [34], [34], [15], [34], [15], [15], [34], [15], [34], [34], [15], [15], [34], [15], [15], [34], [15], [15], [34], [34], [15], [15], [15], [15], [15], [15], [34], [15], [15], [34], [34], [15], [34], [34], [34], [34], [34], [34], [15], [15], [15], [34], [15], [34], [34], [15], [34], [34], [15], [34], [34], [34], [15], [15], [34], [15], [34], [34], [15], [34], [15], [15], [15], [34], [34], [34], [34], [34], [15], [15], [34], [15], [34], [15], [34], [34], [15], [34], [15], [34], [15], [34], [34], [34], [34], [34], [34], [15], [15], [34], [34], [15], [34], [15], [34], [15], [34], [15], [15], [15], [15], [15], [15], [34], [34], [34], [15], [15], [34], [15], [34], [34], [34], [34], [34], [15], [34], [34], [15], [15], [34], [34], [15], [15], [34], [15], [15], [34], [15], [34], [34], [34], [34], [34], [34], [15], [34], [15], [15], [15], [15], [15], [15], [34], [34], [34], [15], [34], [34], [34], [34], [15], [34], [15], [15], [34], [34], [15], [34], [15], [34], [34], [15], [34], [15], [34], [34], [34], [34], [34], [15], [15], [15], [15], [34], [15], [15], [34], [15], [34], [34], [34], [34], [34], [15], [15], [15], [15], [34], [34], [15], [34], [34], [34], [34], [34], [34], [34], [34], [15], [15], [15], [15], [15], [34], [15], [34], [34], [15], [34], [15], [34], [34], [34], [34], [34], [34], [15], [15], [34], [15], [15], [34], [15], [34], [34], [34], [15], [15], [34], [34], [15], [34], [15], [15], [34], [15], [15], [15], [15], [34], [34], [34], [15], [15], [15], [15], [34], [34], [34], [34], [34], [15], [34], [34], [34], [34], [34], [34], [34], [34], [15], [34], [34], [34], [34], [34], [34], [34], [15], [34], [34], [34], [15], [34], [34], [34], [15], [34], [15], [15], [15], [15], [15], [15], [15], [15], [34], [34], [15], [34], [34], [34], [34], [15], [15], [34], [15], [34], [34], [15], [15], ...]
len(train_answers_sequence)
10000
Here, we will take the input and the data should consist of stories, questions and answers. Then, we have the word index and it takes the dictionary from the tokenizer. The other parameters which we will needs is the length of the longest story and the length of the longest question. We need these parameters for the Pad Sequences Function.
The output of this function is that we need to vectorize the data into the padded sequence. We will first loop through all the entire data and then we will convert the row word into the word index value and then we will append each set to the appropriate output list. Once we convert the word to the number, we will pad the sequences so that they are of equal length. So, basically, we have to return the tuple.
So, we have:
So, we have to grab the word index for each word in the variables story, question and answer. So, for each word, we will try to obtain the word index for that. We need to obtain this for the respective lists. Then, we will pad the sequences based on the length inorder to make all of them equal.
# Creating the Function
def vectorize_stories(data,
word_index = tokenizer.word_index,
max_story_length = max_story_length,
max_question_length = max_question_length):
# Creating the desired lists
X = []
Xq = []
Y = []
# Creating the vectors
for story, question, answer in data:
x = [word_index[word.lower()] for word in story]
xq = [word_index[word.lower()] for word in question]
y = np.zeros(len(word_index) + 1)
y[word_index[answer]] = 1
X.append(x)
Xq.append(xq)
Y.append(y)
return(pad_sequences(X,maxlen=max_story_length),pad_sequences(Xq,maxlen=max_question_length),np.array(Y))
# Vectorising the Training Data
train_input_stories, train_input_questions, train_input_answers = vectorize_stories(train_data)
train_input_stories
array([[ 0, 0, 0, ..., 16, 18, 27], [ 0, 0, 0, ..., 16, 6, 27], [ 0, 0, 0, ..., 16, 23, 27], ..., [ 0, 0, 0, ..., 16, 18, 27], [ 0, 0, 0, ..., 29, 28, 27], [ 0, 0, 0, ..., 17, 28, 27]], dtype=int32)
train_input_questions
array([[13, 25, 37, 16, 6, 7], [13, 36, 37, 16, 23, 7], [13, 36, 37, 16, 10, 7], ..., [13, 25, 37, 16, 6, 7], [13, 19, 37, 16, 1, 7], [13, 19, 37, 16, 18, 7]], dtype=int32)
train_input_answers
array([[0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], ..., [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.]])
# Vectorising the Testing Data
test_input_stories, test_input_questions, test_input_answers = vectorize_stories(test_data)
test_input_stories
array([[ 0, 0, 0, ..., 16, 18, 27], [ 0, 0, 0, ..., 16, 3, 27], [ 0, 0, 0, ..., 16, 3, 27], ..., [ 0, 0, 0, ..., 16, 17, 27], [ 0, 0, 0, ..., 16, 3, 27], [ 0, 0, 0, ..., 17, 28, 27]], dtype=int32)
test_input_questions
array([[13, 35, 37, 16, 1, 7], [13, 35, 37, 16, 1, 7], [13, 35, 37, 16, 3, 7], ..., [13, 19, 37, 16, 18, 7], [13, 25, 37, 16, 3, 7], [13, 19, 37, 16, 3, 7]], dtype=int32)
test_input_answers
array([[0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], ..., [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.]])
tokenizer.word_index['yes']
34
tokenizer.word_index['no']
15
from keras.models import Sequential, Model
from keras.layers.embeddings import Embedding
from keras.layers import Input, Activation, Dense, Permute, Dropout, add, dot, concatenate, LSTM
input_sequence = Input((max_story_length,))
question = Input((max_question_length,))
# Obtain the input Encoder m
input_encoder_m = Sequential()
input_encoder_m.add(Embedding(input_dim = vocab_length, output_dim = 64))
input_encoder_m.add(Dropout(0.3))
# Obtain the input Encoder m
input_encoder_c = Sequential()
input_encoder_c.add(Embedding(input_dim = vocab_length, output_dim = max_question_length))
input_encoder_c.add(Dropout(0.3))
# Question Encoder
question_encoder = Sequential()
question_encoder.add(Embedding(input_dim = vocab_length, output_dim = 64, input_length = max_question_length))
question_encoder.add(Dropout(0.3))
# Encoding the Sequences
input_encoded_m = input_encoder_m(input_sequence)
input_encoded_c = input_encoder_c(input_sequence)
question_encoded = question_encoder(question)
# We will be using the dot product to match between the encoded queries
match = dot([input_encoded_m, question_encoded], axes=(2,2))
match
<KerasTensor: shape=(None, 156, 6) dtype=float32 (created by layer 'dot')>
match = Activation('softmax')(match)
match
<KerasTensor: shape=(None, 156, 6) dtype=float32 (created by layer 'activation')>
response = add([match, input_encoded_c])
response
<KerasTensor: shape=(None, 156, 6) dtype=float32 (created by layer 'add')>
response = Permute((2,1))(response)
response
<KerasTensor: shape=(None, 6, 156) dtype=float32 (created by layer 'permute')>
answer = concatenate([response, question_encoded])
answer
<KerasTensor: shape=(None, 6, 220) dtype=float32 (created by layer 'concatenate')>
answer = LSTM(32)(answer)
answer
<KerasTensor: shape=(None, 32) dtype=float32 (created by layer 'lstm')>
answer = Dropout(0.5)(answer)
answer
<KerasTensor: shape=(None, 32) dtype=float32 (created by layer 'dropout_3')>
answer = Dense(vocab_length)(answer)
answer
<KerasTensor: shape=(None, 38) dtype=float32 (created by layer 'dense')>
# Obtain the Probability Distribution
answer = Activation('softmax')(answer)
answer
<KerasTensor: shape=(None, 38) dtype=float32 (created by layer 'activation_1')>
model = Model([input_sequence, question], answer)
model.compile(optimizer = 'rmsprop', loss = 'categorical_crossentropy', metrics = ['accuracy'])
model.summary()
Model: "model" __________________________________________________________________________________________________ Layer (type) Output Shape Param # Connected to ================================================================================================== input_1 (InputLayer) [(None, 156)] 0 __________________________________________________________________________________________________ input_2 (InputLayer) [(None, 6)] 0 __________________________________________________________________________________________________ sequential (Sequential) (None, None, 64) 2432 input_1[0][0] __________________________________________________________________________________________________ sequential_2 (Sequential) (None, 6, 64) 2432 input_2[0][0] __________________________________________________________________________________________________ dot (Dot) (None, 156, 6) 0 sequential[0][0] sequential_2[0][0] __________________________________________________________________________________________________ activation (Activation) (None, 156, 6) 0 dot[0][0] __________________________________________________________________________________________________ sequential_1 (Sequential) (None, None, 6) 228 input_1[0][0] __________________________________________________________________________________________________ add (Add) (None, 156, 6) 0 activation[0][0] sequential_1[0][0] __________________________________________________________________________________________________ permute (Permute) (None, 6, 156) 0 add[0][0] __________________________________________________________________________________________________ concatenate (Concatenate) (None, 6, 220) 0 permute[0][0] sequential_2[0][0] __________________________________________________________________________________________________ lstm (LSTM) (None, 32) 32384 concatenate[0][0] __________________________________________________________________________________________________ dropout_3 (Dropout) (None, 32) 0 lstm[0][0] __________________________________________________________________________________________________ dense (Dense) (None, 38) 1254 dropout_3[0][0] __________________________________________________________________________________________________ activation_1 (Activation) (None, 38) 0 dense[0][0] ================================================================================================== Total params: 38,730 Trainable params: 38,730 Non-trainable params: 0 __________________________________________________________________________________________________
# train_input_stories, train_input_questions, train_input_answers = vectorize_stories(train_data)
history = model.fit([train_input_stories, train_input_questions],
train_input_answers,
batch_size = 32,
epochs = 100,
validation_data = ([test_input_stories, test_input_questions], test_input_answers)
)
Epoch 1/100 313/313 [==============================] - 3s 10ms/step - loss: 0.2625 - accuracy: 0.8919 - val_loss: 0.3623 - val_accuracy: 0.8450 Epoch 2/100 313/313 [==============================] - 3s 10ms/step - loss: 0.2606 - accuracy: 0.8895 - val_loss: 0.3489 - val_accuracy: 0.8510 Epoch 3/100 313/313 [==============================] - 3s 10ms/step - loss: 0.2547 - accuracy: 0.8926 - val_loss: 0.3633 - val_accuracy: 0.8560 Epoch 4/100 313/313 [==============================] - 3s 10ms/step - loss: 0.2502 - accuracy: 0.8969 - val_loss: 0.3690 - val_accuracy: 0.8540 Epoch 5/100 313/313 [==============================] - 3s 10ms/step - loss: 0.2451 - accuracy: 0.8989 - val_loss: 0.3536 - val_accuracy: 0.8630 Epoch 6/100 313/313 [==============================] - 3s 10ms/step - loss: 0.2501 - accuracy: 0.8990 - val_loss: 0.3398 - val_accuracy: 0.8610 Epoch 7/100 313/313 [==============================] - 3s 10ms/step - loss: 0.2427 - accuracy: 0.9050 - val_loss: 0.3460 - val_accuracy: 0.8660 Epoch 8/100 313/313 [==============================] - 3s 10ms/step - loss: 0.2441 - accuracy: 0.9046 - val_loss: 0.3496 - val_accuracy: 0.8530 Epoch 9/100 313/313 [==============================] - 3s 10ms/step - loss: 0.2317 - accuracy: 0.9078 - val_loss: 0.3515 - val_accuracy: 0.8710 Epoch 10/100 313/313 [==============================] - 3s 10ms/step - loss: 0.2276 - accuracy: 0.9079 - val_loss: 0.3402 - val_accuracy: 0.8690 Epoch 11/100 313/313 [==============================] - 3s 10ms/step - loss: 0.2285 - accuracy: 0.9075 - val_loss: 0.3458 - val_accuracy: 0.8580 Epoch 12/100 313/313 [==============================] - 3s 10ms/step - loss: 0.2164 - accuracy: 0.9095 - val_loss: 0.3242 - val_accuracy: 0.8690 Epoch 13/100 313/313 [==============================] - 3s 10ms/step - loss: 0.2046 - accuracy: 0.9137 - val_loss: 0.3262 - val_accuracy: 0.8680 Epoch 14/100 313/313 [==============================] - 3s 10ms/step - loss: 0.2043 - accuracy: 0.9157 - val_loss: 0.3110 - val_accuracy: 0.8710 Epoch 15/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1977 - accuracy: 0.9168 - val_loss: 0.2860 - val_accuracy: 0.8800 Epoch 16/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1929 - accuracy: 0.9165 - val_loss: 0.2871 - val_accuracy: 0.8840 Epoch 17/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1942 - accuracy: 0.9215 - val_loss: 0.2648 - val_accuracy: 0.8870 Epoch 18/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1833 - accuracy: 0.9216 - val_loss: 0.2763 - val_accuracy: 0.8870 Epoch 19/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1818 - accuracy: 0.9233 - val_loss: 0.2529 - val_accuracy: 0.8980 Epoch 20/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1748 - accuracy: 0.9273 - val_loss: 0.2454 - val_accuracy: 0.8990 Epoch 21/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1719 - accuracy: 0.9292 - val_loss: 0.2521 - val_accuracy: 0.8980 Epoch 22/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1609 - accuracy: 0.9341 - val_loss: 0.2820 - val_accuracy: 0.8960 Epoch 23/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1628 - accuracy: 0.9342 - val_loss: 0.2717 - val_accuracy: 0.8970 Epoch 24/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1647 - accuracy: 0.9366 - val_loss: 0.2572 - val_accuracy: 0.9010 Epoch 25/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1522 - accuracy: 0.9366 - val_loss: 0.2524 - val_accuracy: 0.9060 Epoch 26/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1538 - accuracy: 0.9389 - val_loss: 0.2656 - val_accuracy: 0.9010 Epoch 27/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1529 - accuracy: 0.9384 - val_loss: 0.2789 - val_accuracy: 0.9040 Epoch 28/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1482 - accuracy: 0.9423 - val_loss: 0.2553 - val_accuracy: 0.9060 Epoch 29/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1468 - accuracy: 0.9415 - val_loss: 0.2780 - val_accuracy: 0.9000 Epoch 30/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1427 - accuracy: 0.9434 - val_loss: 0.2842 - val_accuracy: 0.9100 Epoch 31/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1463 - accuracy: 0.9460 - val_loss: 0.2892 - val_accuracy: 0.9080 Epoch 32/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1357 - accuracy: 0.9447 - val_loss: 0.2670 - val_accuracy: 0.9070 Epoch 33/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1447 - accuracy: 0.9455 - val_loss: 0.2724 - val_accuracy: 0.9080 Epoch 34/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1348 - accuracy: 0.9494 - val_loss: 0.2681 - val_accuracy: 0.9120 Epoch 35/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1381 - accuracy: 0.9471 - val_loss: 0.2729 - val_accuracy: 0.9080 Epoch 36/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1383 - accuracy: 0.9459 - val_loss: 0.2591 - val_accuracy: 0.9100 Epoch 37/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1295 - accuracy: 0.9510 - val_loss: 0.2545 - val_accuracy: 0.9150 Epoch 38/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1374 - accuracy: 0.9475 - val_loss: 0.2581 - val_accuracy: 0.9140 Epoch 39/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1217 - accuracy: 0.9533 - val_loss: 0.3123 - val_accuracy: 0.9030 Epoch 40/100 313/313 [==============================] - 3s 11ms/step - loss: 0.1271 - accuracy: 0.9512 - val_loss: 0.2753 - val_accuracy: 0.9130 Epoch 41/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1263 - accuracy: 0.9533 - val_loss: 0.2554 - val_accuracy: 0.9120 Epoch 42/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1220 - accuracy: 0.9554 - val_loss: 0.2989 - val_accuracy: 0.9030 Epoch 43/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1308 - accuracy: 0.9524 - val_loss: 0.2539 - val_accuracy: 0.9160 Epoch 44/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1245 - accuracy: 0.9546 - val_loss: 0.2787 - val_accuracy: 0.9120 Epoch 45/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1205 - accuracy: 0.9546 - val_loss: 0.2642 - val_accuracy: 0.9150 Epoch 46/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1122 - accuracy: 0.9599 - val_loss: 0.2936 - val_accuracy: 0.9140 Epoch 47/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1173 - accuracy: 0.9563 - val_loss: 0.2956 - val_accuracy: 0.9160 Epoch 48/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1108 - accuracy: 0.9595 - val_loss: 0.3029 - val_accuracy: 0.9110 Epoch 49/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1165 - accuracy: 0.9573 - val_loss: 0.2746 - val_accuracy: 0.9130 Epoch 50/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1108 - accuracy: 0.9601 - val_loss: 0.2815 - val_accuracy: 0.9150 Epoch 51/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1143 - accuracy: 0.9589 - val_loss: 0.2998 - val_accuracy: 0.9120 Epoch 52/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1046 - accuracy: 0.9597 - val_loss: 0.3099 - val_accuracy: 0.9050 Epoch 53/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1050 - accuracy: 0.9626 - val_loss: 0.2948 - val_accuracy: 0.9220 Epoch 54/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1075 - accuracy: 0.9612 - val_loss: 0.2634 - val_accuracy: 0.9190 Epoch 55/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1067 - accuracy: 0.9606 - val_loss: 0.2767 - val_accuracy: 0.9210 Epoch 56/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1083 - accuracy: 0.9609 - val_loss: 0.2750 - val_accuracy: 0.9210 Epoch 57/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0985 - accuracy: 0.9655 - val_loss: 0.3287 - val_accuracy: 0.9130 Epoch 58/100 313/313 [==============================] - 3s 10ms/step - loss: 0.1074 - accuracy: 0.9621 - val_loss: 0.3014 - val_accuracy: 0.9190 Epoch 59/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0952 - accuracy: 0.9648 - val_loss: 0.2895 - val_accuracy: 0.9230 Epoch 60/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0942 - accuracy: 0.9639 - val_loss: 0.3142 - val_accuracy: 0.9230 Epoch 61/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0962 - accuracy: 0.9647 - val_loss: 0.3219 - val_accuracy: 0.9240 Epoch 62/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0911 - accuracy: 0.9675 - val_loss: 0.3156 - val_accuracy: 0.9060 Epoch 63/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0961 - accuracy: 0.9640 - val_loss: 0.3134 - val_accuracy: 0.9230 Epoch 64/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0933 - accuracy: 0.9674 - val_loss: 0.3311 - val_accuracy: 0.9260 Epoch 65/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0953 - accuracy: 0.9644 - val_loss: 0.3381 - val_accuracy: 0.9150 Epoch 66/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0924 - accuracy: 0.9669 - val_loss: 0.3148 - val_accuracy: 0.9150 Epoch 67/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0882 - accuracy: 0.9679 - val_loss: 0.3230 - val_accuracy: 0.9220 Epoch 68/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0934 - accuracy: 0.9653 - val_loss: 0.3095 - val_accuracy: 0.9130 Epoch 69/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0852 - accuracy: 0.9698 - val_loss: 0.3032 - val_accuracy: 0.9170 Epoch 70/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0853 - accuracy: 0.9684 - val_loss: 0.3081 - val_accuracy: 0.9190 Epoch 71/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0879 - accuracy: 0.9690 - val_loss: 0.3221 - val_accuracy: 0.9220 Epoch 72/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0910 - accuracy: 0.9684 - val_loss: 0.2871 - val_accuracy: 0.9230 Epoch 73/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0859 - accuracy: 0.9694 - val_loss: 0.3371 - val_accuracy: 0.9200 Epoch 74/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0809 - accuracy: 0.9712 - val_loss: 0.3397 - val_accuracy: 0.9180 Epoch 75/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0820 - accuracy: 0.9715 - val_loss: 0.3154 - val_accuracy: 0.9270 Epoch 76/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0902 - accuracy: 0.9689 - val_loss: 0.3239 - val_accuracy: 0.9200 Epoch 77/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0793 - accuracy: 0.9706 - val_loss: 0.3081 - val_accuracy: 0.9170 Epoch 78/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0723 - accuracy: 0.9749 - val_loss: 0.3122 - val_accuracy: 0.9180 Epoch 79/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0749 - accuracy: 0.9747 - val_loss: 0.3374 - val_accuracy: 0.9200 Epoch 80/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0760 - accuracy: 0.9741 - val_loss: 0.3769 - val_accuracy: 0.9120 Epoch 81/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0741 - accuracy: 0.9714 - val_loss: 0.3327 - val_accuracy: 0.9180 Epoch 82/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0768 - accuracy: 0.9728 - val_loss: 0.3147 - val_accuracy: 0.9220 Epoch 83/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0752 - accuracy: 0.9740 - val_loss: 0.3260 - val_accuracy: 0.9140 Epoch 84/100 313/313 [==============================] - 3s 11ms/step - loss: 0.0692 - accuracy: 0.9767 - val_loss: 0.3188 - val_accuracy: 0.9330 Epoch 85/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0757 - accuracy: 0.9758 - val_loss: 0.3382 - val_accuracy: 0.9250 Epoch 86/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0726 - accuracy: 0.9758 - val_loss: 0.3506 - val_accuracy: 0.9300 Epoch 87/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0714 - accuracy: 0.9754 - val_loss: 0.3328 - val_accuracy: 0.9260 Epoch 88/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0667 - accuracy: 0.9762 - val_loss: 0.3780 - val_accuracy: 0.9190 Epoch 89/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0633 - accuracy: 0.9769 - val_loss: 0.3014 - val_accuracy: 0.9300 Epoch 90/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0610 - accuracy: 0.9780 - val_loss: 0.3550 - val_accuracy: 0.9280 Epoch 91/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0652 - accuracy: 0.9789 - val_loss: 0.3459 - val_accuracy: 0.9210 Epoch 92/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0620 - accuracy: 0.9805 - val_loss: 0.3768 - val_accuracy: 0.9160 Epoch 93/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0615 - accuracy: 0.9783 - val_loss: 0.3677 - val_accuracy: 0.9230 Epoch 94/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0599 - accuracy: 0.9811 - val_loss: 0.3757 - val_accuracy: 0.9120 Epoch 95/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0625 - accuracy: 0.9777 - val_loss: 0.3560 - val_accuracy: 0.9250 Epoch 96/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0608 - accuracy: 0.9792 - val_loss: 0.3478 - val_accuracy: 0.9310 Epoch 97/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0582 - accuracy: 0.9796 - val_loss: 0.3758 - val_accuracy: 0.9250 Epoch 98/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0620 - accuracy: 0.9794 - val_loss: 0.3604 - val_accuracy: 0.9240 Epoch 99/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0521 - accuracy: 0.9824 - val_loss: 0.3607 - val_accuracy: 0.9180 Epoch 100/100 313/313 [==============================] - 3s 10ms/step - loss: 0.0573 - accuracy: 0.9824 - val_loss: 0.3258 - val_accuracy: 0.9250
print(history.history.keys())
dict_keys(['loss', 'accuracy', 'val_loss', 'val_accuracy'])
import matplotlib.pyplot as plt
plt.plot(history.history['loss'])
plt.title("Model Loss")
plt.ylabel("Loss")
plt.xlabel("Epochs")
Text(0.5, 0, 'Epochs')
plt.plot(history.history['accuracy'])
plt.title("Model Accuracy")
plt.ylabel("Accuracy")
plt.xlabel("Epochs")
Text(0.5, 0, 'Epochs')
plt.plot(history.history['val_loss'])
plt.title("Model Accuracy")
plt.ylabel("Val Loss")
plt.xlabel("Epochs")
Text(0.5, 0, 'Epochs')
plt.plot(history.history['val_accuracy'])
plt.title("Model Accuracy")
plt.xlabel("Epochs")
plt.ylabel("Val Accuracy")
Text(0, 0.5, 'Val Accuracy')
model.save("/content/drive/MyDrive/1stop.ai/Basic ChatBot/ChatBot_Model")
WARNING:absl:Found untraced functions such as lstm_cell_layer_call_and_return_conditional_losses, lstm_cell_layer_call_fn, lstm_cell_layer_call_fn, lstm_cell_layer_call_and_return_conditional_losses, lstm_cell_layer_call_and_return_conditional_losses while saving (showing 5 of 5). These functions will not be directly callable after loading.
INFO:tensorflow:Assets written to: /content/drive/MyDrive/1stop.ai/Basic ChatBot/ChatBot_Model/assets
INFO:tensorflow:Assets written to: /content/drive/MyDrive/1stop.ai/Basic ChatBot/ChatBot_Model/assets /usr/local/lib/python3.7/dist-packages/keras/utils/generic_utils.py:497: CustomMaskWarning: Custom mask layers require a config and must override get_config. When loading, the custom mask layer must be passed to the custom_objects argument. category=CustomMaskWarning)
model.load_weights("/content/drive/MyDrive/1stop.ai/Basic ChatBot/ChatBot_Model")
<tensorflow.python.training.tracking.util.CheckpointLoadStatus at 0x7fb5a957dbd0>
# Predicting Results
predict_results = model.predict(([test_input_stories, test_input_questions]))
test_data[0][0]
['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
# Joining the Sentence
story = ' '.join(word for word in test_data[0][0])
story
'Mary got the milk there . John moved to the bedroom .'
query = ' '.join(word for word in test_data[0][1])
query
'Is John in the kitchen ?'
test_data[0][2]
'no'
# Generating Predictions
val_max = np.argmax(predict_results[0])
for key, val in tokenizer.word_index.items():
if(val == val_max):
k = key
print("Predicted Answer is: ", k)
print("Probability of Certainity: ", predict_results[0][val_max])
Predicted Answer is: no Probability of Certainity: 0.9999988
my_story = "Mary dropped the football . Sandra discarded apple in kitchen"
my_story.split()
['Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'discarded', 'apple', 'in', 'kitchen']
my_question = "Is apple in the kitchen ?"
my_question.split()
['Is', 'apple', 'in', 'the', 'kitchen', '?']
mydata = [(my_story.split(), my_question.split(), 'yes')]
my_story_vector, my_question_vector, my_answer_vector = vectorize_stories(mydata)
predict_results = model.predict(([my_story_vector, my_question_vector]))
predict_results
array([[3.6078524e-16, 3.6581871e-16, 3.3633111e-16, 3.6367595e-16, 3.8882711e-16, 3.6010187e-16, 3.7480395e-16, 3.4601473e-16, 3.7041330e-16, 3.5624477e-16, 3.3381563e-16, 4.1717445e-16, 3.4951833e-16, 4.1227333e-16, 3.4959967e-16, 9.9996722e-01, 3.2753017e-16, 4.0876553e-16, 3.9854319e-16, 3.7064372e-16, 3.8261643e-16, 3.6772008e-16, 3.3664303e-16, 3.5825899e-16, 3.4743391e-16, 3.7648052e-16, 3.7031161e-16, 3.4898274e-16, 3.3159585e-16, 3.7217389e-16, 3.4715701e-16, 3.8325038e-16, 3.9233441e-16, 3.6227327e-16, 3.2760232e-05, 3.7400700e-16, 3.4459344e-16, 3.8490601e-16]], dtype=float32)
val_max = np.argmax(predict_results[0])
for key, val in tokenizer.word_index.items():
if(val == val_max):
k = key
print("Predicted Answer is: ", k)
print("Probability of Certainity is: ", predict_results[0][val_max])
Predicted Answer is: no Probability of Certainity is: 0.9999672